3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-23 18:44:14 +01:00

revert notifies changes

This commit is contained in:
reality 2013-08-24 15:05:40 +00:00
parent 5b571a0cb8
commit 16607a68d2

View File

@ -6,19 +6,18 @@ 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#row div#notify_datatable
div#notify_datatable table.table.table-hover.data#notifies
table.table.table-hover.data#notifies thead
thead tr
th Date
th Channel
th User
th Message
tbody
for notify in notifies
tr tr
th Date td #{new Date(notify.time)}
th Channel td #{notify.channel}
th User td #{notify.user}
th Message td #{notify.message}
tbody
for notify in notifies
tr#row
td #{new Date(notify.time)}
td #{notify.channel}
td #{notify.user}
td #{notify.message}