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

34 lines
798 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<h1>
2024-06-02 05:50:49 +02:00
Users with <%= @badge.title %> badge
2024-06-02 05:50:36 +02:00
</h1>
<% route = fn p -> ~p"/admin/badges/#{@badge}/users?#{p}" end %>
<% pagination = render(PhilomenaWeb.PaginationView, "_pagination.html", page: @users, route: route, conn: @conn) %>
<div class="block">
<div class="block__header">
<%= pagination %>
</div>
<div class="block__content">
<table class="table">
<thead>
<tr>
<th>
User
</th>
</tr>
</thead>
<tbody>
<%= for user <- @users do %>
<tr>
<td>
<%= link(user.name, to: ~p"/profiles/#{user}") %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
<div class="block__header block__header--light">
<%= pagination %>
</div>
</div>