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

Interim Meeting Request Details

Group
{{ group.acronym }}
Requested By
{{ requester }}
Status
{{ meeting_status.name }}
City
{{ meeting.city }}
Country
{{ meeting.country }}
Timezone
{{ meeting.time_zone }}
{% for assignment in meeting_assignments %}
{% if meeting_assignments|length > 1 %}
Session
{{ assignment.status.name }}
{% endif %}
Date
{{ assignment.timeslot.time|date:"Y-m-d" }}
Start Time
{{ assignment.timeslot.time|date:"H:i" }} {% if meeting.time_zone != 'UTC' %}( {{ assignment.timeslot.utc_start_time|date:"H:i"}} UTC ){% endif %}
Duration
{{ assignment.session.requested_duration|format_timedelta }}
Remote Instructions
{{ assignment.session.remote_instructions }}
Additional Info
{{ assignment.session.agenda_note }}
{% if meeting_assignments|length > 1 %} {% if can_edit and assignment.can_be_canceled %}
Actions
Cancel Session
{% endif %} {% endif %} {% endfor %}
{% csrf_token %} {% with meeting_status.slug as status_slug %} {% if can_edit %} Edit {% endif %} {% if can_approve and status_slug == 'apprw' %} {% endif %} {% if user|has_role:"Secretariat" and status_slug == 'scheda' %} Announce Skip Announcement {% endif %} {% if can_edit %} {% if status_slug == 'apprw' or status_slug == 'scheda' or status_slug == 'sched' %} Cancel Meeting {% endif %} {% endif %} {% if status_slug == "apprw" %} Back {% elif status_slug == "scheda" %} Back {% elif status_slug == "sched" %} Back {% else %} Back {% endif %} {% endwith %}
{% endblock %} {% block js %} {% endblock %}