90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
29 lines
843 B
Elixir
29 lines
843 B
Elixir
<h2>Listing Categories</h2>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Picture</th>
|
|
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= for category <- @categories do %>
|
|
<tr>
|
|
<td><%= category.title %></td>
|
|
<td><%= category.picture %></td>
|
|
|
|
<td class="text-right">
|
|
<span><%= link "Show", to: category_path(@conn, :show, category), class: "btn btn-default btn-xs" %></span>
|
|
<span><%= link "Edit", to: category_path(@conn, :edit, category), class: "btn btn-default btn-xs" %></span>
|
|
<span><%= link "Delete", to: category_path(@conn, :delete, category), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<span><%= link "New Category", to: category_path(@conn, :new) %></span>
|