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

Events

Upcoming Calendar Add Event
{% for event in page_obj %} {% empty %} {% endfor %}
Title Type Location Start Date Status Actions
{{ event.title }} {{ event.get_event_type_display }} {{ event.location }} {{ event.start_date|date:"M d, Y H:i" }} {% if event.is_upcoming %} Upcoming {% else %} Past {% endif %} View Edit Delete
No events found.
{% if page_obj.has_other_pages %} {% endif %} Return to Dashboard {% endblock %}