{% 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 %} {% for notice in read_notifications %} {% include 'notifications/notice.html' %} {% endfor %} {% endif %}
{% trans "Back home" as back %} {% include "patterns/basics/buttons/sp_variations/text-dir-arrow_back-button.html" with hyperlink=current_site.root_page.specific.url page_name=back direction="left" %}
{% endblock %}