2006-11-28 01:31:14 +03:00
|
|
|
<% 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? %>
|
2007-02-28 01:07:01 +03:00
|
|
|
<%= textilizable journal.notes %>
|
2006-11-28 01:31:14 +03:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|