{% extends 'base.html' %} {% load notifier_tags %} {% block content %}
{{ 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 %}