## -*- 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(_('My Notifications'), h.route_path('notifications_show_all'))} » ${_('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)}
${h.notification_description(c.notification, request)}

${_('Subject')}: ${c.notification.subject}

%if c.notification.body: ${h.render(c.notification.body, renderer=c.visual.default_renderer, mentions=True)} %endif