mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
17 lines
328 B
Text
17 lines
328 B
Text
h2 Listing Forums
|
|
|
|
table.table
|
|
thead
|
|
tr
|
|
th Name
|
|
th Options
|
|
tbody
|
|
= for forum <- @forums do
|
|
tr
|
|
td
|
|
= link forum.name, to: ~p"/forums/#{forum}"
|
|
|
|
td class="text-right"
|
|
= link "Edit", to: ~p"/admin/forums/#{forum}/edit"
|
|
|
|
= link "New Forum", to: ~p"/admin/forums/new"
|