{% extends 'base.html' %} {% load notifier_tags %} {% block content %}

Notifications

{% get_new_notifications_count user as new_notifications_count %} {% if new_notifications_count %}

{{ new_notifications_count }} new notifications (Mark all as read)

{% else %}

No new notifications

{% endif %} {% for noti in notification_list %} {% with noti_obj=noti.get_notification_obj %} {% include noti_obj.web_noti_tmpl with noti_instance=noti_obj %} {% endwith %} {% empty %} No notifications to list {% endfor %} {% endblock %}