<%namespace name="base" file="/base/base.mako"/>

${_('My notifications')}

%if c.notifications:
%for notification in c.notifications:
${base.gravatar(notification.notification.created_by_user.email, 16)} ${h.notification_description(notification.notification, request)}
%if not notification.read: %endif
%endfor
${c.notifications.render()}
%else:
${_('No notifications here yet')}
%endif