{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Mark All as Read" %} - ATS{% endblock %} {% block content %}

{{ title }}

{{ message }}

{% if unread_count > 0 %}
{% trans "What this will do" %}

{% blocktrans count count=unread_count %} This will mark {{ count }} unread notification as read. {% plural %} This will mark all {{ count }} unread notifications as read. {% endblocktrans %}

{% trans "You can still view all notifications in your notification list, but they won't appear as unread." %}

{% else %}
{% trans "All caught up!" %}

{% trans "You don't have any unread notifications to mark as read." %}

{% endif %} {% if unread_count > 0 %}
{% csrf_token %} {% trans "Cancel" %}
{% else %} {% trans "Back to Notifications" %} {% endif %}
{% endblock %}