blob: da58b7d6c964e9ac6799b5dfe67d9b5b7e5e94c6 (
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 h(journal.notes) %>
<% end %>
<% end %>
|