3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-17 14:01:04 +01:00
dbot/views/report/notifies.jade

25 lines
618 B
Plaintext
Raw Normal View History

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