3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-05 01:22:34 +01:00
dbot/views/report/notifies.jade

24 lines
574 B
Plaintext
Raw Normal View History

2013-07-06 20:45:21 +02:00
extends ../layout
block content
div#backlink
a(href='/notify/'+server) « Server Channels
2013-07-06 20:45:21 +02:00
p
div#controls
input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)")
div#notify_datatable
table.table.table-hover.data#notifies
2013-07-06 20:45:21 +02:00
thead
tr
th Date
th Channel
th User
th Message
tbody
2013-08-24 16:32:27 +02:00
for notify in notifies
2013-07-06 20:45:21 +02:00
tr
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}