{% extends "social_layer/base.html" %} {% load i18n %} {% block header %} {% trans 'Notifications' %} {% endblock header %} {% block content %}

{% trans 'Notifications' %}

{% if object_list %} {% for notif in object_list %}
{{ notif.date_time }}
{{ notif.text|safe }}
{% endfor %} {% else %}

{% trans "You may get messages here. You don't have any notification yet." %}

{% endif %}
{% endblock content %}