{% extends "base.html" %} {% block title %}Manage Events | Roadshow Calendar{% endblock %} {% block content %}
Staff workspace

Manage your public event calendar securely

Only staff members can reach this area. Create events here or jump into Django Admin for bulk edits.

All events

{{ dashboard_count }} scheduled item{{ dashboard_count|pluralize }} currently in the system.

{% for event in events %} {% empty %} {% endfor %}
Event Date Location Status Actions
{{ event.name }}
{{ event.start|date:"g:i A" }} – {{ event.end|date:"g:i A" }}
{{ event.start|date:"M j, Y" }} {{ event.location|default:"—" }} {% if event.is_published %} Published {% else %} Draft {% endif %}

No events yet

Create your first event to populate the public calendar and widget.

Create event
{% endblock %}