philomena/lib/philomena_web/templates/admin/subnet_ban/index.html.slime
2020-09-17 16:01:50 -04:00

62 lines
1.8 KiB
Text

h1 Subnet Bans
- route = fn p -> Routes.admin_subnet_ban_path(@conn, :index, p) end
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @subnet_bans, route: route, params: [q: @conn.params["q"]]
= form_for :subnet_ban, Routes.admin_subnet_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_subnet_ban_path(@conn, :new)
i.fa.fa-plus>
' New subnet ban
= pagination
.block__content
table.table
thead
tr
th Specification
th Created
th Expires
th Reason/Note
th Ban ID
th Options
tbody
= for ban <- @subnet_bans do
tr
td
= link ban.specification, to: Routes.ip_profile_path(@conn, :show, to_string(ban.specification))
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_subnet_ban_path(@conn, :edit, ban)
= if @current_user.role == "admin" do
' &bull;
=> link "Destroy", to: Routes.admin_subnet_ban_path(@conn, :delete, ban), data: [confirm: "Are you really, really sure?", method: "delete"]
.block__header.block__header--light
= pagination