{% extends "layout.html" %} {% block content %}
{% if announcements.items %}
{% for announcement in announcements.items %} {% endfor %}
Title Type Status Start Date End Date Target Created Actions
{{ announcement.title }} {% if announcement.is_urgent %} URGENT {% endif %}
{{ announcement.announcement_type.title() }} {% if announcement.is_active %} {% if announcement.is_visible_now() %} Active {% else %} Scheduled {% endif %} {% else %} Inactive {% endif %} {% if announcement.start_date %} {{ announcement.start_date.strftime('%Y-%m-%d %H:%M') }} {% else %} Immediate {% endif %} {% if announcement.end_date %} {{ announcement.end_date.strftime('%Y-%m-%d %H:%M') }} {% else %} No expiry {% endif %} {% if announcement.target_all_users %} All Users {% else %} Targeted {% endif %} {{ announcement.created_at.strftime('%Y-%m-%d') }}
{% if announcements.pages > 1 %}
Showing {{ announcements.per_page * (announcements.page - 1) + 1 }} - {{ announcements.per_page * (announcements.page - 1) + announcements.items|length }} of {{ announcements.total }} announcements
{% endif %} {% else %}

No announcements found

Create your first announcement to communicate with users.

Create Announcement
{% endif %}
{% endblock %}