philomena/lib/philomena_web/templates/admin/badge/user/index.html.slime

26 lines
557 B
Text
Raw Normal View History

2019-12-23 15:23:25 +01:00
h1
' Users with
=> @badge.title
' badge
2020-01-07 07:14:06 +01:00
- route = fn p -> Routes.admin_badge_user_path(@conn, :index, @badge, p) end
2019-12-23 15:23:25 +01:00
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @users, route: route, conn: @conn
.block
.block__header
= pagination
2023-11-23 17:07:49 +01:00
2019-12-23 15:23:25 +01:00
.block__content
table.table
thead
tr
th User
tbody
= for user <- @users do
tr
td
= link user.name, to: Routes.profile_path(@conn, :show, user)
.block__header.block__header--light
= pagination