{% extends "django_program/manage/base.html" %} {% block title %}Rooms{% endblock %} {% block page_title %}

Rooms

Venue rooms and spaces

{% endblock %} {% block page_actions %} Add Room {% endblock %} {% block content %} {% if rooms %} {% for room in rooms %} {% endfor %}
Name Capacity Position Sync Status Actions
{{ room.name }} {% if room.capacity %}{{ room.capacity }}{% else %}—{% endif %} {% if room.position is not None %}{{ room.position }}{% else %}—{% endif %} {% if room.synced_at %} 🔒 Synced from Pretalx {% else %} Manual {% endif %} Edit
{% else %}

No rooms yet. Sync from Pretalx or create rooms manually.

{% endif %} {% endblock %}