dbot/views/report/missing_notifies.jade

24 lines
530 B
Plaintext
Raw Normal View History

2013-08-13 00:25:41 +02:00
extends ../layout
block content
h3 Notifications Missed by #{user.primaryNick}
2013-08-17 23:04:42 +02:00
div#backlink
a(href='/notify') « Notifications
2013-08-13 00:25:41 +02:00
p
if notifies
div#profile_datatable
table.table.table-hover.data
thead
tr
th Date
2013-08-31 17:47:56 +02:00
th Channel
2013-09-07 21:28:46 +02:00
th User
2013-08-13 00:25:41 +02:00
th Message
tbody
each notify in notifies
tr
2013-08-29 23:12:45 +02:00
td #{notify.time}
2013-08-31 17:47:56 +02:00
td #{notify.channel}
2013-09-07 21:28:46 +02:00
td #{notify.user}
2013-08-13 00:25:41 +02:00
td #{notify.message}