summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_history.rhtml
blob: 6dc2a84be9d884fd03868d4114ecc6ce0f4430a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<% 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 journal.notes %>
	<% end %>
<% end %>