forked from GitHub/dbot
24 lines
469 B
Plaintext
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}
|