## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('My Notifications')} ${c.rhodecode_user.username} - ${c.rhodecode_name} <%def name="breadcrumbs_links()"> ${_('My Notifications')} <%def name="page_nav()"> ${self.menu('admin')} <%def name="main()">
${self.breadcrumbs()}
% if c.notifications: <% unread = lambda n:{False:'unread'}.get(n) %>
%for notification in c.notifications:
${h.literal(notification.notification.subject)}
%endfor
%else:
${_('No notifications here yet')}
%endif