3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
dbot/views/kick/bans.jade

24 lines
469 B
Plaintext

extends ../layout
block content
div#backlink
a(href='/bans/') « Servers
p
div#profile_datatable
table.table.table-hover.data
thead
tr
th Date
th Banner
th Banee
th Host
th Reason
tbody
each ban, key in bans
tr
td #{new Date(ban.time)}
td #{ban.banner}
td #{ban.banee}
td #{ban.host}
td #{ban.reason}