{% extends "layouts/dashboard.html" %} {% load humanize %} {% load notification_tags %} {% block title %}Notifications — IILMP{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Activity stream

Notifications

{% if page_obj.paginator.count %} {% if unread_count %} {{ unread_count }} unread of {{ page_obj.paginator.count }} entr{{ page_obj.paginator.count|pluralize:"y,ies" }}{% with latest=page_obj.0.created_at %} · last update {{ latest|smart_time }}{% endwith %}. {% else %} {{ page_obj.paginator.count }} entr{{ page_obj.paginator.count|pluralize:"y,ies" }} · all caught up. {% endif %} {% else %} You have no notifications yet. {% endif %}

{% if unread_count %}
{% csrf_token %}
{% endif %}
{% if page_obj %}
{% for notification in page_obj %} {% include "notifications/partials/notification_item.html" %} {% endfor %}
{% else %}

You're all caught up

When something needs your attention — applications, awards, mentorships, programmes — it will appear here.

{% endif %}
{% include "components/pagination.html" with page_obj=page_obj %} {% endblock %}