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 regels
575 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Documents</h1>
  3. <table>
  4. <thead>
  5. <tr>
  6. <th>Name</th>
  7. <th colspan="3"></th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <% @documents.each do |document| %>
  12. <tr>
  13. <td><%= document.name %></td>
  14. <td><%= link_to 'Show', document %></td>
  15. <td><%= link_to 'Edit', edit_document_path(document) %></td>
  16. <td><%= link_to 'Destroy', document, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  17. </tr>
  18. <% end %>
  19. </tbody>
  20. </table>
  21. <br>
  22. <%= link_to 'New Document', new_document_path %>