summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_history.rhtml
blob: edfb9b94d9a2dafd200e20675b030e8f660a5bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% note_id = 1 %>
<% for journal in journals %>
	<h4><div style="float:right;"><%= link_to "##{note_id}", :anchor => "note-#{note_id}" %></div>
	<%= content_tag('a', '', :name => "note-#{note_id}")%>
	<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
	<ul>
	<% for detail in journal.details %>
	   <li><%= show_detail(detail) %></li>
	<% end %>
	</ul>
	<%= render_notes(journal) unless journal.notes.blank? %>
  	<% note_id += 1 %>
<% end %>