3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 12:59:34 +01:00
dbot/views/kick/bans.jade

24 lines
469 B
Plaintext
Raw Normal View History

2013-08-18 22:23:13 +02:00
extends ../layout
block content
div#backlink
a(href='/bans/') « Servers
2013-08-18 22:23:13 +02:00
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}