You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_history.rhtml 508B

12345678910111213
  1. <% for journal in journals %>
  2. <div id="change-<%= journal.id %>" class="journal">
  3. <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
  4. <%= content_tag('a', '', :name => "note-#{journal.indice}")%>
  5. <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
  6. <ul>
  7. <% for detail in journal.details %>
  8. <li><%= show_detail(detail) %></li>
  9. <% end %>
  10. </ul>
  11. <%= render_notes(journal) unless journal.notes.blank? %>
  12. </div>
  13. <% end %>