mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
62 lines
1.8 KiB
Text
62 lines
1.8 KiB
Text
h1 Fingerprint Bans
|
|
|
|
- route = fn p -> Routes.admin_fingerprint_ban_path(@conn, :index, p) end
|
|
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @fingerprint_bans, route: route, params: [q: @conn.params["q"]]
|
|
|
|
= form_for :fingerprint_ban, Routes.admin_fingerprint_ban_path(@conn, :index), [method: "get", class: "hform"], fn f ->
|
|
.field
|
|
= text_input f, :q, name: "q", class: "hform__text input", placeholder: "Search"
|
|
= submit "Search", class: "button hform__button"
|
|
|
|
.block
|
|
.block__header
|
|
a href=Routes.admin_fingerprint_ban_path(@conn, :new)
|
|
i.fa.fa-plus>
|
|
' New fingerprint ban
|
|
|
|
= pagination
|
|
|
|
.block__content
|
|
table.table
|
|
thead
|
|
tr
|
|
th Fingerprint
|
|
th Created
|
|
th Expires
|
|
th Reason/Note
|
|
th Ban ID
|
|
th Options
|
|
|
|
tbody
|
|
= for ban <- @fingerprint_bans do
|
|
tr
|
|
td
|
|
= link ban.fingerprint, to: Routes.fingerprint_profile_path(@conn, :show, ban.fingerprint)
|
|
|
|
td
|
|
=> pretty_time ban.created_at
|
|
= user_abbrv @conn, ban.banning_user
|
|
|
|
td class=ban_row_class(ban)
|
|
= pretty_time ban.valid_until
|
|
|
|
td
|
|
= ban.reason
|
|
|
|
= if present?(ban.note) do
|
|
p.block.block--fixed
|
|
em
|
|
' Note:
|
|
= ban.note
|
|
|
|
td
|
|
= ban.generated_ban_id
|
|
|
|
td
|
|
=> link "Edit", to: Routes.admin_fingerprint_ban_path(@conn, :edit, ban)
|
|
= if @current_user.role == "admin" do
|
|
' •
|
|
=> link "Destroy", to: Routes.admin_fingerprint_ban_path(@conn, :delete, ban), data: [confirm: "Are you really, really sure?", method: "delete"]
|
|
|
|
.block__header.block__header--light
|
|
= pagination
|