{% extends "base.html" %} {% block title %}All Announcements — Admin{% endblock %} {% block content %}
{% if announcements %}
{% for a in announcements %} {% endfor %}
Title Class Teacher Posted Expires Pinned
{{ a['title'] }} {% if a['body'] %}
{{ a['body'][:80] }}{% if a['body']|length > 80 %}…{% endif %}
{% endif %}
{{ a['class_name'] }} {{ a['teacher_name'] }} {{ a['created_at'][:10] }} {% if a['expires_at'] %} {{ a['expires_at'] }} {% if a['expires_at'] < now_date %} Expired {% endif %} {% else %} Never {% endif %} {% if a['pinned'] %}📌{% else %}—{% endif %}
{% else %}
📢
No announcements yet
Teachers post announcements from their class pages.
{% endif %}
{% endblock %}