redmine-history.patch

Carl Nygard, 2008-04-10 19:53

Download (763 Bytes)

 
/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">
4 3
	<h4><div style="float:right;"><%= link_to "##{note_id}", :anchor => "note-#{note_id}" %></div>
5 4
	<%= content_tag('a', '', :name => "note-#{note_id}")%>
6 5
	<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
......
11 10
	</ul>
12 11
  	<%= textilizable(journal.notes) unless journal.notes.blank? %>
13 12
  	<% note_id += 1 %>
14
  </div>
15 13
<% end %>