{% extends "base.html" %} {% block title %}Pending Events{% endblock %} {% block content %}

Pending Event Submissions

These events were submitted by users and are awaiting your approval. Approve to publish; Reject to delete. ← Back to Calendar

{% if events %}
{% for e in events %}
{{ e.title }} {{ e.starts_at.strftime('%a %Y-%m-%d %H:%M UTC') }} {% if e.ends_at %} – {{ e.ends_at.strftime('%H:%M UTC') }}{% endif %} {% if e.location %}{{ e.location }}{% endif %}
Submitted by {{ e.created_by.username }} on {{ e.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if e.description %}
{{ e.description }}
{% endif %}
{% endfor %}
{% else %}
No events pending review.
{% endif %} {% endblock %}