dbot/views/report/notifies.jade

25 lines
618 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)")
2013-08-24 17:02:48 +02:00
div#row
div#notify_datatable
table.table.table-hover.data#notifies
thead
2013-07-06 20:45:21 +02:00
tr
2013-08-24 17:02:48 +02:00
th Date
th Channel
th User
th Message
tbody
for notify in notifies
2013-08-24 17:04:27 +02:00
tr#row
2013-08-24 17:02:48 +02:00
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}