{% extends 'superuser/base_super_user.html' %} {% block title %}System Announcements | SaaS Command{% endblock %} {% block page_title %}Network Announcements{% endblock %} {% block page_subtitle %}Broadcast messages to institution dashboards.{% endblock %} {% block content %}
New Broadcast
{% for ann in announcements %}
{{ ann.created_at|date:"d M Y, h:i A" }} {% if ann.is_bulk %}All Institutions{% else %}{{ ann.schools.count }} Selected Institutions{% endif %} Seen by: {{ ann.seen_by.count }}
{{ ann.message|linebreaksbr }}
DELETE
{% empty %}
NO BROADCASTS FOUND.
{% endfor %} {% endblock %}