{% 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.

Backup

Download a full event backup

Export every event into one JSON file so you can keep an offline backup before larger edits or restore the calendar later if needed.

Embed settings

Generate a copy-ready widget snippet

Tune the iframe once, copy the finished code, and paste it into your existing HTML site.

Live embed output

Copy either the direct widget URL or the full iframe snippet.

Preview widget
Widget URL
{{ embed_base_url }}
Iframe snippet
<iframe src="{{ embed_base_url }}" title="Where to find us calendar" width="100%" height="760" style="border:0;border-radius:24px;overflow:hidden;" loading="lazy"></iframe>

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 %}