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.
36 lines
861 B
36 lines
861 B
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Categories</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Blurb</th>
|
|
<th>Description</th>
|
|
<th>External</th>
|
|
<th>Parent category</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @categories.each do |category| %>
|
|
<tr>
|
|
<td><%= category.name %></td>
|
|
<td><%= category.blurb %></td>
|
|
<td><%= category.description %></td>
|
|
<td><%= category.external_id %></td>
|
|
<td><%= category.parent_category_id %></td>
|
|
<td><%= link_to 'Show', category %></td>
|
|
<td><%= link_to 'Edit', edit_category_path(category) %></td>
|
|
<td><%= link_to 'Destroy', category, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Category', new_category_path %>
|