mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2025-04-19 17:16:42 +00:00
51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
-extends "base.haml"
|
|
-set page="Software Bans"
|
|
-block content
|
|
%details.section
|
|
%summary << Ban Software
|
|
%form(action="/admin/software_bans" method="POST")
|
|
#add-item
|
|
%label(for="name") << Name
|
|
%input(id="name" name="name" placeholder="Name")
|
|
|
|
%label(for="reason") << Ban Reason
|
|
%textarea(id="reason" name="reason") << {{""}}
|
|
|
|
%label(for="note") << Admin Note
|
|
%textarea(id="note" name="note") << {{""}}
|
|
|
|
%input(type="submit" value="Ban Software")
|
|
|
|
%fieldset.section
|
|
%legend << Software Bans
|
|
|
|
.data-table
|
|
%table
|
|
%thead
|
|
%tr
|
|
%td.name << Name
|
|
%td << Date
|
|
%td.remove
|
|
|
|
%tbody
|
|
-for ban in bans
|
|
%tr
|
|
%td.name
|
|
%details
|
|
%summary -> =ban.name
|
|
%form(action="/admin/software_bans" method="POST")
|
|
.grid-2col
|
|
.reason << Reason
|
|
%textarea.reason(id="reason" name="reason") << {{ban.reason or ""}}
|
|
|
|
.note << Note
|
|
%textarea.note(id="note" name="note") << {{ban.note or ""}}
|
|
|
|
%input(type="hidden" name="name" value="{{ban.name}}")
|
|
%input(type="submit" value="Update")
|
|
|
|
%td.date
|
|
=ban.created.strftime("%Y-%m-%d")
|
|
|
|
%td.remove
|
|
%a(href="/admin/software_bans/delete/{{ban.name}}" title="Unban software") << ✖
|