{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load static bootstrap3 widget_tweaks ietf_filters %} {% block title %}Interim Request{% endblock %} {% block pagehead %} {% endblock %} {% block content %} {% origin %}

Interim Meeting Request

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% bootstrap_field form.group layout='horizontal' %}
{% if user|has_role:"Secretariat,Area Director,IRTF Chair" %}
{% endif %}
Meeting Type:
{% for radio in form.meeting_type %} {% endfor %}
{% render_field form.city class="form-control location" placeholder="City" %} {% render_field form.country class="form-control location" style="width: 30%" %}
{% render_field form.time_zone class="form-control" %} Local Timezone
{{ formset.management_form }} {% if formset.non_form_errors %}
{{ formset.non_form_errors }}
{% endif %} {% for form in formset %}
{% render_field form.date class="form-control" %}
{% if form.date.errors %}{{ form.date.errors }}{% endif %}
{% render_field form.time class="form-control time-field" placeholder="HH:MM" %}
Local Time {% if form.time.errors %}{{ form.time.errors }}{% endif %}
{% render_field form.requested_duration class="form-control time-field" placeholder="HH:MM" %}{% if form.requested_duration.errors %}{{ form.requested_duration.errors }}{% endif %}
{% render_field form.end_time class="form-control time-field computed" placeholder="HH:MM" disabled="disabled" %}
Local Time
{% render_field form.remote_instructions class="form-control" placeholder="Webex (or other) URL or descriptive information (see below)" %}

For virtual interims, a conference link should be provided in the original request in all but the most unusual circumstances. Otherwise, "Remote participation is not supported" or "Remote participation information will be obtained at the time of approval" are acceptable values. See here for more on remote participation support.

{% if form.remote_instructions.errors %}{{ form.remote_instructions.errors }}{% endif %}
{% render_field form.agenda class="form-control" rows="6" placeholder="Paste agenda here" %}
{% render_field form.agenda_note class="form-control" %}
{% endfor %}
{% buttons %}
Back
{% endbuttons %}
{% endblock %} {% block js %} {% endblock %}