{% extends "base.html" %} {# Copyright The IETF Trust 2021, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% block pagehead %} {{ form.media.css }} {% endblock %} {% block title %}Edit timeslot "{{ timeslot.name }}" for {{ timeslot.meeting }}{% endblock %} {% block content %} {% origin %}

Edit timeslot "{{ timeslot.name }}" for {{ timeslot.meeting }}

{% if sessions %}
This timeslot currently has the following sessions assigned to it: {% for s in sessions %}
{{s}}
{% endfor %}
{% endif %}
{% csrf_token %} {% bootstrap_form form %} {% buttons %} Cancel {% endbuttons %}
{% endblock %} {% block js %} {{ form.media.js }} {% endblock %}