1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-13 04:33:08 +00:00
redmine/scm/app/views/issues/_history.rhtml
Jean-Philippe Lang fa820c0224 SCM branch
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@101 e93f8b46-1217-0410-a6f0-8f06a7374b81
2006-12-18 17:24:21 +00:00

12 lines
317 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? %>
<%= simple_format auto_link h(journal.notes) %>
<% end %>
<% end %>