mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 11:56:43 +01:00
83 lines
2.3 KiB
Text
83 lines
2.3 KiB
Text
<h1>
|
|
User Bans
|
|
</h1>
|
|
<% route = fn p -> ~p"/admin/user_bans?#{p}" end %>
|
|
<% pagination = render(PhilomenaWeb.PaginationView, "_pagination.html", page: @user_bans, route: route, params: page_params(@conn.params)) %>
|
|
<%= form_for :user_ban, ~p"/admin/user_bans", [method: "get", class: "hform"], fn f -> %>
|
|
<div class="field">
|
|
<%= text_input(f, :q, name: "q", class: "hform__text input", placeholder: "Search") %>
|
|
<%= submit("Search", class: "button hform__button") %>
|
|
</div>
|
|
<% end %>
|
|
<div class="block">
|
|
<div class="block__header">
|
|
<a href={~p"/admin/user_bans/new"}>
|
|
<i class="fa fa-plus"></i> New user ban
|
|
</a>
|
|
<%= pagination %>
|
|
</div>
|
|
<div class="block__content">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
User
|
|
</th>
|
|
<th>
|
|
Created
|
|
</th>
|
|
<th>
|
|
Expires
|
|
</th>
|
|
<th>
|
|
Reason/Note
|
|
</th>
|
|
<th>
|
|
Ban ID
|
|
</th>
|
|
<th>
|
|
Options
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= for ban <- @user_bans do %>
|
|
<tr>
|
|
<td>
|
|
<%= link(ban.user.name, to: ~p"/profiles/#{ban.user}") %>
|
|
</td>
|
|
<td>
|
|
<%= pretty_time(ban.created_at) %>
|
|
<%= user_abbrv(ban.banning_user) %>
|
|
</td>
|
|
<td class={ban_row_class(ban)}>
|
|
<%= pretty_time(ban.valid_until) %>
|
|
</td>
|
|
<td>
|
|
<%= ban.reason %>
|
|
<%= if present?(ban.note) do %>
|
|
<p class="block block--fixed">
|
|
<em>
|
|
Note: <%= ban.note %>
|
|
</em>
|
|
</p>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<%= ban.generated_ban_id %>
|
|
</td>
|
|
<td>
|
|
<%= link("Edit", to: ~p"/admin/user_bans/#{ban}/edit") %>
|
|
<%= if @current_user.role == "admin" do %>
|
|
• <%= link("Destroy", to: ~p"/admin/user_bans/#{ban}", data: [confirm: "Are you really, really sure?", method: "delete"]) %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="block__header block__header--light">
|
|
<%= pagination %>
|
|
</div>
|
|
</div>
|