%if c.notifications: <% unread = lambda n:{False:'unread'}.get(n) %>
%for notification in c.notifications:
${h.gravatar(notification.notification.created_by_user.email, size=24)}
%if not notification.read:
%endif
%endfor
${c.notifications.pager('$link_previous ~2~ $link_next',controller='admin/notifications',**request.GET.mixed())}
%else:
${_('No notifications here yet')}
%endif