diff --git a/rhodecode/templates/admin/users/notifications.html b/rhodecode/templates/admin/users/notifications.html new file mode 100644 --- /dev/null +++ b/rhodecode/templates/admin/users/notifications.html @@ -0,0 +1,28 @@ +## -*- 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()} +
+ % for notification in c.notifications: + ${notification.title} + %else: +
${_('No notifications here yet')}
+ %endfor +
+