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

{% trans "Notifications" %}

{% endblock %} {% block content %} {% if msg_note %}
{% trans "Alert" %} : {{ msg_note }}
{% endif %}
{% trans "Mark all as read" %}


{% csrf_token %} {% if user_notification %} {% autopaginate user_notification PAGE_SIZE %} {% for row in user_notification %} {% endfor %} {% else %} {% endif %}
{% sort_link NOTICE_COLUMN_NAME.message col_name_with_order.message %} {% sort_link NOTICE_COLUMN_NAME.notice_type col_name_with_order.notice_type %} {% sort_link NOTICE_COLUMN_NAME.sender col_name_with_order.sender %} {% sort_link NOTICE_COLUMN_NAME.date_field col_name_with_order.added %} {% trans "Action" %}
{{ row.message }} {{ row.notice_type }} {{ row.sender }} {{ row.added }} {{ row.unseen|notification_status }}
{% trans "no records found"|title %}
{% if user_notification %} {% paginate %} {% endif %}
{% trans "Total"%} : {{ user_notification_count }}
{% endblock %}