{% extends "allianceauth/base-bs5.html" %} {% load static %} {% load i18n %} {% block page_title %} {% translate "Notifications" %} {% endblock page_title %} {% block header_nav_brand %} {% translate "Notifications" %} {% endblock header_nav_brand %} {% block header_nav_collapse_left %} {% endblock %} {% block header_nav_collapse_right %} {% translate "Mark all notifications as read" as nav_item_title %} {% url "notifications:mark_all_read" as nav_item_link %} {% include "framework/header/nav-collapse-icon.html" with fa_icon="fa-solid fa-check-double" url=nav_item_link title=nav_item_title icon_on_mobile=True %} {% translate "Delete all read notifications" as nav_item_title %} {% url "notifications:mark_all_read" as nav_item_link %} {% include "framework/header/nav-collapse-icon.html" with fa_icon="fa-solid fa-trash-can" url=nav_item_link title=nav_item_title icon_on_mobile=True %} {% endblock %} {% block content %}
{% include "notifications/list_partial.html" with notifications=unread %}
{% include "notifications/list_partial.html" with notifications=read %}
{% endblock %}