philomena/lib/philomena_web/templates/admin/forum/index.html.heex

29 lines
519 B
Text
Raw Normal View History

2024-05-04 23:09:20 +02:00
<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") %>