{% extends "settings/base.html" %} {% block subtitle %}Announcements{% endblock %} {% block content %}
Create
{% for announcement in page_obj %} {% empty %} {% endfor %}
{{ announcement.html|truncatewords_html:"10" }} {% if announcement.service_announcement %}{{ domain.service_domain }}{% endif %} {% if not announcement.published %} Draft {% elif not announcement.after_start %} Awaiting Start {% elif not announcement.before_end %} Past End {% else %} Visible {% endif %} State {% if not announcement.published %} {% else %} {% endif %}
You have no announcements.
{% include "admin/_pagination.html" with nouns="announcement,announcements" %} {% endblock %}