{% extends "page.html" %} {% block main %}
{% if fixed_message %}
{{ fixed_message }}
{% endif %} {% if user.admin %}
Submit a blank message to clear the latest announcement and make it a previous one.
HTML tags allowed: a, h1, h2, h3, strong, em, p, ul, ol, li, br, sub, sup, hr
{% endif %}

Latest Announcement

{% for entry in announcements | reverse %} {% if loop.index == 2 %}

Previous Announcements

{% endif %} {% if entry.announcement %}

{{ entry.announcement }}
{{ entry.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} ({{ entry.user }})

{% else %} {% if loop.index == 1 %}

None.

{% endif %} {% endif %} {% else %}

None.

{% endfor %}
{% endblock %}