forked from GitHub/dbot
20 lines
430 B
Plaintext
20 lines
430 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
h3 Notifications Missed by #{user.primaryNick}
|
|
div#backlink
|
|
a(href='/notify') « Notifications
|
|
p
|
|
if notifies
|
|
div#profile_datatable
|
|
table.table.table-hover.data
|
|
thead
|
|
tr
|
|
th Date
|
|
th Message
|
|
tbody
|
|
each notify in notifies
|
|
tr
|
|
td #{new Date(notify.time)}
|
|
td #{notify.message}
|