## -*- coding: utf-8 -*- <%inherit file="/base/base.mako"/> <%def name="title()"> ${_('Show notification')} ${c.rhodecode_user.username} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif <%def name="breadcrumbs_links()"> ${h.link_to(_('Notifications'),h.url('notifications'))} » ${_('Show notification')} <%def name="menu_bar_nav()"> ${self.menu_items(active='admin')} <%def name="main()">
${self.breadcrumbs()} ##
${self.gravatar(c.notification.created_by_user.email, 30)}
${c.notification.description}
${h.literal(c.notification.subject)}
%if c.notification.body: ${h.render(c.notification.body, renderer=c.visual.default_renderer, mentions=True)} %endif