show_notification.mako
57 lines
| 1.8 KiB
| application/x-mako
|
MakoHtmlLexer
r1282 | ## -*- 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> | ||||
<%def name="breadcrumbs_links()"> | ||||
r1825 | ${h.link_to(_('Notifications'), h.url('notifications'))} | |||
r1282 | » | |||
${_('Show notification')} | ||||
</%def> | ||||
<%def name="menu_bar_nav()"> | ||||
${self.menu_items(active='admin')} | ||||
</%def> | ||||
<%def name="main()"> | ||||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
<div class="table"> | ||||
<div id="notification_${c.notification.notification_id}" class="main-content-full"> | ||||
<div class="notification-header"> | ||||
${self.gravatar(c.notification.created_by_user.email, 30)} | ||||
<div class="desc"> | ||||
${c.notification.description} | ||||
</div> | ||||
<div class="delete-notifications"> | ||||
<span id="${c.notification.notification_id}" class="delete-notification action"><i class="icon-delete" ></i></span> | ||||
</div> | ||||
</div> | ||||
<div class="notification-body"> | ||||
r1825 | <div class="notification-subject"> | |||
<h3>${_('Subject')}: ${c.notification.subject}</h3> | ||||
</div> | ||||
r1282 | %if c.notification.body: | |||
${h.render(c.notification.body, renderer=c.visual.default_renderer, mentions=True)} | ||||
%endif | ||||
</div> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
<script type="text/javascript"> | ||||
r1910 | var url = "${h.url('notification', notification_id='__NOTIFICATION_ID__')}"; | |||
var main = "${h.url('notifications')}"; | ||||
r1282 | $('.delete-notification').on('click',function(e){ | |||
var notification_id = e.currentTarget.id; | ||||
deleteNotification(url,notification_id,[function(){window.location=main}]) | ||||
}) | ||||
</script> | ||||
</%def> | ||||