This commit is contained in:
reality 2013-08-24 15:02:48 +00:00
parent 779ace09bf
commit 51e5f620bf

View File

@ -6,18 +6,19 @@ block content
p p
div#controls div#controls
input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)") input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)")
div#notify_datatable div#row
table.table.table-hover.data#notifies div#notify_datatable
thead table.table.table-hover.data#notifies
tr thead
th Date
th Channel
th User
th Message
tbody
for notify in notifies
tr tr
td #{new Date(notify.time)} th Date
td #{notify.channel} th Channel
td #{notify.user} th User
td #{notify.message} th Message
tbody
for notify in notifies
tr
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}