diff options
Diffstat (limited to 'app/views/issues/_history.rhtml')
-rw-r--r-- | app/views/issues/_history.rhtml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml new file mode 100644 index 000000000..6dc2a84be --- /dev/null +++ b/app/views/issues/_history.rhtml @@ -0,0 +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? %>
+ <%= simple_format auto_link journal.notes %>
+ <% end %>
+<% end %>
|