{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 i18n %} {% block content %}

{% trans "Notifications"%}


{% trans "Unread notifications"%}


{% for notification in unread_notifications %}
{% csrf_token %} {{notification}} - {{notification.date}}

{% endfor %}

{% trans "All notifications"%}


{% for notification in all_notifications %} {{notification.message}} {{notification.message.date}}
{% endfor %}
{%endblock%}