Redmine/app/views/issues/_history.rhtml

12 lines
303 B
Plaintext
Raw Normal View History

<% 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 %>