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