philomena/lib/philomena_web/templates/admin/badge/user/index.html.slime
2020-01-07 01:14:06 -05:00

25 lines
559 B
Text

h1
' Users with
=> @badge.title
' badge
- route = fn p -> Routes.admin_badge_user_path(@conn, :index, @badge, p) end
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @users, route: route, conn: @conn
.block
.block__header
= pagination
.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