## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%block name="title"> ${_('Show Notification')} ${c.authuser.username} <%def name="breadcrumbs_links()"> ${h.link_to(_('Notifications'),h.url('notifications'))} » ${_('Show Notification')} <%block name="header_menu"> ${self.menu('admin')} <%def name="main()">
${self.breadcrumbs()}
${h.gravatar(c.notification.created_by_user.email, size=24)}
${c.notification.description}
${h.literal(c.notification.subject)}
%if c.notification.body: ${h.rst_w_mentions(c.notification.body)} %endif