_history.rhtml
13 lines
| 471 B
| text/html+ruby
|
RhtmlLexer
|
r627 | <% note_id = 1 %> | ||
|
r330 | <% for journal in journals %> | ||
|
r610 | <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> | ||||
|
r330 | <ul> | ||
<% for detail in journal.details %> | ||||
<li><%= show_detail(detail) %></li> | ||||
<% end %> | ||||
</ul> | ||||
|
r610 | <%= textilizable(journal.notes) unless journal.notes.blank? %> | ||
|
r627 | <% note_id += 1 %> | ||
|
r330 | <% end %> | ||