3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/views/report/notifies.jade
2013-08-24 17:53:16 +00:00

24 lines
565 B
Plaintext

extends ../layout
block content
div#backlink
a(href='/notify/'+server) « Server
p
div#controls
input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)")
div#notify_datatable
table.table.table-hover.data#notifies
thead
tr
th Date
th Channel
th User
th Message
tbody
for notify in notifies
tr
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}