summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_history.rhtml
blob: f29a44daf4631d4b33585b390a65b570c200c92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% for journal in journals %>
    <div id="change-<%= journal.id %>" class="journal">
	<h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
	<%= content_tag('a', '', :name => "note-#{journal.indice}")%>
	<%= 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? %>
	</div>
<% end %>