3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-10 11:34:15 +01:00
dbot/views/report/missing_notifies.jade

24 lines
530 B
Plaintext
Raw Normal View History

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