{% extends "base.html" %} {% block title %}Manage Alerts{% endblock %} {% block content %}
Create, modify, or retire alerts. Only administrators can make changes.
| Title | Category | Expires | Reminders | Status | Actions |
|---|---|---|---|---|---|
| {{ a.title }}{% if a.description %} {{ a.description[:80] }}{% if a.description|length > 80 %}…{% endif %}{% endif %} |
{% if a.category %}{{ a.category }}{% else %}—{% endif %} | {{ a.expiration_date.isoformat() }} | {{ a.reminder_days|join(', ') }}d | {{ 'active' if a.is_active else 'inactive' }} | {% if current_user.is_admin %} Edit {% else %} view only {% endif %} |
No alerts yet.
{% if current_user.is_admin %}Create one{% endif %}