{% extends "base.html" %} {% block title %}Notifications | Admin Portal{% endblock %} {% block nav_notifications %}active{% endblock %} {% block content %} {% if notifications %}
{% for notif in notifications %}

{{ notif.message }}

{{ notif.recipient.get_full_name }} {{ notif.recipient.email }} {{ notif.created_at|date:"d M Y, H:i" }}
{% csrf_token %}
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}

No notifications sent yet.

Send First Notification
{% endif %} {% endblock %}