{% extends "base.html" %} {% block title %}All Announcements — Admin{% endblock %} {% block content %}
{{ announcements|length }} total across all classes
| 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 %} |