mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-13 04:33:08 +00:00
* issue_relation model added git-svn-id: http://redmine.rubyforge.org/svn/branches/work@162 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
317 B
Plaintext
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 %>
|