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

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

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