mobilizon.chapril.org-mobil.../lib/eventos_web/templates/tag/index.html.eex
Thomas Citharel 90ceb4f6fe initial commit
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2017-12-08 09:58:14 +01:00

29 lines
770 B
Elixir

<h2>Listing Tags</h2>
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Slug</th>
<th></th>
</tr>
</thead>
<tbody>
<%= for tag <- @tags do %>
<tr>
<td><%= tag.title %></td>
<td><%= tag.slug %></td>
<td class="text-right">
<span><%= link "Show", to: tag_path(@conn, :show, tag), class: "btn btn-default btn-xs" %></span>
<span><%= link "Edit", to: tag_path(@conn, :edit, tag), class: "btn btn-default btn-xs" %></span>
<span><%= link "Delete", to: tag_path(@conn, :delete, tag), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
</td>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "New Tag", to: tag_path(@conn, :new) %></span>