1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-13 12:43:08 +00:00
redmine/time/app/views/issues/_history.rhtml
Jean-Philippe Lang b23cb49756 created branch for time tracking
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@330 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-03-11 18:11:40 +00:00

12 lines
303 B
Plaintext

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