|
- <p id="notice"><%= notice %></p>
-
- <h1>Documents</h1>
-
- <table>
- <thead>
- <tr>
- <th>Category</th>
- <th>Name</th>
- <th colspan="3"></th>
- </tr>
- </thead>
-
- <tbody>
- <% @documents.each do |document| %>
- <tr>
- <td><%= document.category.get_fqcn %></td>
- <td><%= document.name %></td>
- <td><%= link_to 'Show', document %></td>
- <td><%= link_to 'Edit', edit_document_path(document) %></td>
- <td><%= link_to 'Destroy', document, method: :delete, data: { confirm: 'Are you sure?' } %></td>
- </tr>
- <% end %>
- </tbody>
- </table>
-
- <br>
-
- <%= link_to 'New Document', new_document_path %>
|