{% 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, pin_form in announcements_dict %} {% if forloop.counter > 1 %}
{% endif %}
{{ announcement.body|safe }} {% if pin_form %}
{% csrf_token %} {{ pin_form|bootstrap }} {% if announcement.pinned %} {% else %} {% endif %}
{% endif %}
{% endfor %} {% endif %}
{% if announcements_dict %}
{{ announcements_dict|length }} announcement{{ announcements_dict|length|pluralize }} in total.
{% endif %} {% endblock %} {% block endscripts %} {% endblock %}