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

18 lines
374 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
= 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)