{% extends "base.html" %} {% block body %} {% if not notifications %}

{{ _('You have no notifications') }}

{% else %} {% for notification in notifications %} {% endfor %}
{{ _('User') }} {{ _('Activity') }} {{ _('Link') }} {{ _('Time') }}
{{ link_user(notification.author_id) }} {{ notification.verbose_activity() }} {% autoescape off %} {{notification.html_link}} {% endautoescape %} {{ relative_time(notification.time) }}
{% endif %}
{% include "list-pages.html" %}
{% endblock %}