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
|
2013-08-24 13:56:45 +00:00
|
|
|
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}
|