{% extends "base.html" %} {% load static from staticfiles %} {% load bootstrap %} {% load thread_tags %} {% block headers %} {% endblock %} {% block content %} {% if manager_positions %} {% endif %}

{{ page_name }}


{% if manager_positions %}
{% csrf_token %}
{{ announcement_form|bootstrap }}
{% endif %} {% if not announcements_dict %}
No announcements found.
{% else %}
{% for announcement_tuple in announcements_dict %} {% if forloop.counter > 1 %}
{% endif %}
{{ announcement_tuple.0.body|safe }} {% if announcement_tuple.1 %}
{% csrf_token %} {{ announcement_tuple.1 }} {% if announcement_tuple.0.pinned %} {% else %} {% endif %}
{% endif %}
{% endfor %} {% endif %}
{% if announcements_dict %}
{{ announcements_dict|length }} announcement{{ announcements_dict|length|pluralize }} in total.
{% endif %} {% endblock %}