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
div#controls
input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)")
div#notify_datatable
table.table.table-hover.data#notifies
thead
tr
th Date
th Channel
th User
th Message
tbody
for notify in notifies
div#row
div#notify_datatable
table.table.table-hover.data#notifies
thead
tr
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}
th Date
th Channel
th User
th Message
tbody
for notify in notifies
tr
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}