{% extends 'base.html' %} {% load commonmark %} {% load static %} {% load bornhack %} {% block content %}
BackOffice - EventSessions

EventSessions define the EventSlots where Events of a certain EventType at a certain EventLocation can be scheduled. EventSessions and EventSlots are used in the following ways in the system:

Search for an EventType or EventLocation to filter the list.

{% if not event_session_list %}

No EventSessions found. Go create one! Create New EventSession

{% else %}

Create New EventSession Backoffice

{% for session in event_session_list %} {% endfor %}
Session ID When Description Duration Scheduled Events Event Type Event Location Action
{{ session.id }} {{ session.when.lower }} to
{{ session.when.upper }}
{{ session.description|default:"N/A" }} {{ session.duration }}
{{ session.event_slots.count }} slots
{{ session.scheduled_event_slots.count }} {{ session.event_type }} {{ session.event_location.name }}
{% endif %}

Create New Session Backoffice

{% endblock content %}