extends ../layout.pug
block title
|Icy Network - Banned Account
block body
.container.mt-4.mb-4
if ipban
h1 This IP Address is banned from accessing Icy Network
else
h1 This user is banned from accessing Icy Network.
p This user currently has #{bans.length} ban(s) active.
each ban in bans
.ban.alert.alert-danger
p
b Banned at
.date #{new Date(ban.banned)}
b Reason
.reason #{ban.reason}
b Expires at
.expiry
if !ban.expiry
b This ban is permanent.
|#{new Date(ban.expiry)}
b This ban cannot be appealed.