{% extends "base.html" %} {% load humanize %} {% load crispy_forms_tags %} {% block page_title %}Events{% endblock page_title %} {% block content %}

Events

Plan and share upcoming school events.
Total
{{ event_total|default:0 }}
All events
Active
{{ event_active|default:0 }}
Upcoming
{% if can_manage %} New Event {% endif %}
{% if events %}
{% for item in events %}
{{ item.title }}
{{ item.get_audience_display }} • {{ item.start_datetime|date:"M d, Y H:i" }}{% if item.location %} • {{ item.location }}{% endif %}
{% if item.is_active %} Active {% else %} Inactive {% endif %}
{% if can_manage or item.created_by == user %} Edit Delete {% else %} - {% endif %}
{% endfor %}
{% else %}
No events yet
{% endif %}
{% endblock content %}