Feature #1032 ยป redmine-history.patch
/var/www/html/redmine/app/views/issues/_history.rhtml 2008-04-10 00:39:43.000000000 -0400 | ||
---|---|---|
1 | 1 |
<% note_id = 1 %> |
2 | 2 |
<% for journal in journals %> |
3 |
<div class="journal"> |
|
3 | 4 |
<h4><div style="float:right;"><%= link_to "##{note_id}", :anchor => "note-#{note_id}" %></div> |
4 | 5 |
<%= content_tag('a', '', :name => "note-#{note_id}")%> |
5 | 6 |
<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4> |
... | ... | |
10 | 11 |
</ul> |
11 | 12 |
<%= textilizable(journal.notes) unless journal.notes.blank? %> |
12 | 13 |
<% note_id += 1 %> |
14 |
</div> |
|
13 | 15 |
<% end %> |