philomena/lib/philomena_web/templates/admin/forum/index.html.heex
2024-06-01 23:50:36 -04:00

28 lines
519 B
Text

<h2>
Listing Forums
</h2>
<table class="table">
<thead>
<tr>
<th>
Name
</th>
<th>
Options
</th>
</tr>
</thead>
<tbody>
<%= for forum <- @forums do %>
<tr>
<td>
<%= link(forum.name, to: ~p"/forums/#{forum}") %>
</td>
<td class="text-right">
<%= link("Edit", to: ~p"/admin/forums/#{forum}/edit") %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= link("New Forum", to: ~p"/admin/forums/new") %>