{% extends "base.html" %} {% load i18n %} {% block crumbs %}
  • {% trans "Notifications" %}
  • {% endblock %} {% block content %}
    {% csrf_token %}
    {% if notifications %}
    {% for n in notifications %}

    {% if not n.read %} {% trans "New" %} {% endif %} {% if n.target_url %} {{ n.message }} {% else %} {{ n.message }} {% endif %}

    {{ n.created_at|date:"d.m.Y H:i" }}

    {% if not n.read %}
    {% csrf_token %}
    {% endif %}
    {% endfor %}
    {% else %}

    {% trans "No notifications." %}

    {% endif %}
    {% endblock %}