philomena/lib/philomena_web/templates/comment/index.html.eex
2019-08-18 14:14:36 -04:00

24 lines
568 B
Elixir

<h1>Listing Comments</h1>
<table>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<%= for comment <- @comments do %>
<tr>
<td>
<%= link "Show", to: Routes.comment_path(@conn, :show, comment) %>
<%= link "Edit", to: Routes.comment_path(@conn, :edit, comment) %>
<%= link "Delete", to: Routes.comment_path(@conn, :delete, comment), method: :delete, data: [confirm: "Are you sure?"] %>
</td>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "New Comment", to: Routes.comment_path(@conn, :new) %></span>