{% extends 'base.html' %} {% load bootstrap4 %} {% load static %} {% load notifications_extras %} {% block content %}

List of {{level}} notifications

{% if all %} Just show new notifications {% else %} Show all read notifications as well {% endif %}

{% if notification_list %} {% for notification in notification_list %} {% render_notification notification hide_close=all %} {% endfor %} {% else %}

There are no new notifications

{% endif %}
{% if is_paginated %} {% endif %} {% endblock %}