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.
 
 
 
 
 

28 line
494 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Documents</h1>
  3. <table>
  4. <thead>
  5. <tr>
  6. <th>Category</th>
  7. <th>Name</th>
  8. <th>Created</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <% @documents.each do |document| %>
  13. <tr>
  14. <td><%= document.category.get_fqcn %></td>
  15. <td><%= link_to document.name, document %></td>
  16. <td><%= document.created_at.localtime %></td>
  17. </tr>
  18. <% end %>
  19. </tbody>
  20. </table>
  21. <br>
  22. <%= link_to 'New Document', new_document_path %>