mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 11:56:43 +01:00
28 lines
519 B
Text
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") %>
|