{% extends "frontend/master.html" %} {% load i18n pagination_tags common_tags frontend_notification_tags %} {% block extra_header %} {% endblock %} {% block content_header %}

{% trans "notifications"|capfirst %}

{% endblock %} {% block content %} {% if msg_note %}
{% trans "alert"|title %} : {{ msg_note|capfirst }}
{% endif %}
{% trans "mark all as read"|capfirst %}
{% csrf_token %} {{ form.notification_list }}

{% csrf_token %}
{% if all_user_notification %} {% autopaginate all_user_notification 10 %} {% for row in user_notification %} {% endfor %} {% else %} {% endif %}
{% sort_link trans "Message" col_name_with_order.message %} {% sort_link trans "Notice type" col_name_with_order.notice_type %} {% sort_link trans "Sender" col_name_with_order.sender %} {% sort_link trans "Date" col_name_with_order.added %} {% trans "action"|capfirst %}
{{ row.message }} {{ row.notice_type }} {{ row.sender }} {{ row.added }}
{% trans "no records found"|title %}
{% if all_user_notification %} {% paginate %} {% endif %}
{% trans "total"|capfirst %} : {{ user_notification_count }}
{% endblock %}