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

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

{% else %} {% for notification in notifications %} {% endfor %}
{{ _('User') }} {{ _('Activity') }} {{ _('Link') }} {{ _('Time') }}
{% if notification.comment %} {{ link_user(notification.comment.author) }} {% else %} {{ link_user(notification.author) }} {% endif %} {{ notification.category }} {% if notification.comment %} {{ page_titles[notification.comment.page] }} {% else %} {% autoescape off %} {{notification.html_link}} {% endautoescape %} {% endif %} {{ relative_time(notification.time) }}
{% endif %} {% endblock %}