{% extends "base.html" %} {% load wagtailcore_tags %} {% wagtail_site as current_site %} {% block content %}

{% trans "Comment replies" %}

{% if unread_notifications %}

{% trans "You have"%} {{number_unread_notifications}} {% trans "unread"%} {% if number_unread_notifications == 1 %} {% trans "reply" %} {% else %} {% trans "replies" %} {% endif %}

{% for notice in unread_notifications %} {% include 'notifications/notice.html' %} {% endfor %} {% endif %} {% if read_notifications %}

{% trans "Read replies" %}:

{% for notice in read_notifications %} {% include 'notifications/notice.html' %} {% endfor %} {% endif %}
{% endblock %}