2013-07-06 20:45:21 +02:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
div#backlink
|
2013-08-31 14:17:06 +02:00
|
|
|
a(href='/notify') « Server
|
2013-07-06 20:45:21 +02:00
|
|
|
p
|
2013-08-24 16:46:38 +02:00
|
|
|
div#controls
|
|
|
|
input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)")
|
2013-08-24 17:05:40 +02:00
|
|
|
div#notify_datatable
|
|
|
|
table.table.table-hover.data#notifies
|
|
|
|
thead
|
|
|
|
tr
|
|
|
|
th Date
|
|
|
|
th Channel
|
2013-08-28 00:01:44 +02:00
|
|
|
th type
|
2013-08-24 17:05:40 +02:00
|
|
|
th User
|
|
|
|
th Message
|
|
|
|
tbody
|
|
|
|
for notify in notifies
|
2013-07-06 20:45:21 +02:00
|
|
|
tr
|
2013-08-29 23:12:45 +02:00
|
|
|
td #{notify.time}
|
2013-08-24 17:05:40 +02:00
|
|
|
td #{notify.channel}
|
2013-08-28 00:01:44 +02:00
|
|
|
td #{notify.type}
|
2013-08-24 17:05:40 +02:00
|
|
|
td #{notify.user}
|
|
|
|
td #{notify.message}
|