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

18 lines
328 B
Text
Raw Normal View History

2019-12-15 18:54:27 +01:00
h2 Listing Forums
table.table
thead
tr
th Name
th Options
tbody
= for forum <- @forums do
tr
td
2024-06-06 22:28:35 +02:00
= link forum.name, to: ~p"/forums/#{forum}"
2019-12-15 18:54:27 +01:00
td class="text-right"
2024-06-06 22:28:35 +02:00
= link "Edit", to: ~p"/admin/forums/#{forum}/edit"
2019-12-15 18:54:27 +01:00
2024-06-06 22:28:35 +02:00
= link "New Forum", to: ~p"/admin/forums/new"