mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
17 lines
374 B
Text
17 lines
374 B
Text
h2 Listing Forums
|
|
|
|
table.table
|
|
thead
|
|
tr
|
|
th Name
|
|
th Options
|
|
tbody
|
|
= for forum <- @forums do
|
|
tr
|
|
td
|
|
= link forum.name, to: Routes.forum_path(@conn, :show, forum)
|
|
|
|
td class="text-right"
|
|
= link "Edit", to: Routes.admin_forum_path(@conn, :edit, forum)
|
|
|
|
= link "New Forum", to: Routes.admin_forum_path(@conn, :new)
|