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
|
2013-08-24 15:56:45 +02:00
|
|
|
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-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-08-13 00:25:41 +02:00
|
|
|
td #{notify.message}
|