{% extends "base.html" %} {% load humanize %} {% load crispy_forms_tags %} {% block page_title %}Announcements{% endblock page_title %} {% block content %}

Announcements

Keep staff informed with targeted updates.
Total {{ announcement_total|default:0 }} Active {{ announcement_active|default:0 }} High {{ announcement_high|default:0 }}
{% if can_manage %} New Announcement {% endif %}
{% if announcements %}
{% for item in announcements %}
{{ item.title }}
{{ item.get_audience_display }} {{ item.starts_at|date:"M d, Y H:i" }}
{% if item.priority == 'high' %} High {% elif item.priority == 'low' %} Low {% else %} Normal {% endif %} {% if item.is_active %} Active {% else %} Inactive {% endif %}
{% if can_manage or item.created_by == user %} Edit Delete {% else %} - {% endif %}
{% endfor %}
{% else %}
No announcements yet
{% endif %}

Pinned Announcements

{% if pinned_announcements %}
    {% for item in pinned_announcements %}
  • {{ item.title }} {{ item.starts_at|date:"M d" }}
  • {% endfor %}
{% else %}
No pinned announcements.
{% endif %}
{% endblock content %}