diff options
Diffstat (limited to 'app/views/issues/_history.rhtml')
-rw-r--r-- | app/views/issues/_history.rhtml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml index 37faf977b..cc02eee4e 100644 --- a/app/views/issues/_history.rhtml +++ b/app/views/issues/_history.rhtml @@ -1,11 +1,11 @@ -<% for journal in journals %>
- <h4><%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
- <ul>
- <% for detail in journal.details %>
- <li><%= show_detail(detail) %></li>
- <% end %>
- </ul>
- <% if journal.notes? %>
- <%= textilizable journal.notes %>
- <% end %>
-<% end %>
+<% for journal in journals %> + <h4><%= format_time(journal.created_on) %> - <%= journal.user.name %></h4> + <ul> + <% for detail in journal.details %> + <li><%= show_detail(detail) %></li> + <% end %> + </ul> + <% if journal.notes? %> + <%= textilizable journal.notes %> + <% end %> +<% end %> |