{% extends "base.html" %} {% block title %}Announcements — {{ cls['name'] }}{% endblock %} {% block content %}

+ New Announcement

Students in {{ cls['name'] }} will be notified by email when you post.

{% if announcements %}

All Announcements

{% for a in announcements %}
{% if a['pinned'] %}📌{% endif %} {{ a['title'] }}
{{ a['created_at'][:10] }} {% if a['expires_at'] %} · Expires {{ a['expires_at'] }} {% if a['expires_at'] < now_date %} Expired {% endif %} {% endif %}
{% if a['body'] %}
{{ a['body'] }}
{% endif %}
{% endfor %}
{% else %}
📢
No announcements yet
Use the form above to post your first announcement.
{% endif %}
{% endblock %}