{% extends "base.html" %} {# Copyright The IETF Trust 2021, All Rights Reserved #} {% load origin tz %} {% load bootstrap3 %} {% block title %} Edit {{ material_type.name }} for {{ meeting }} Proceedings {% endblock %} {% block content %} {% origin %}

{% block content_header %} Edit Proceedings Material
{{ meeting }} {{ material_type.name }} {% endblock %}

{% if meeting.proceedings_final %}
The proceedings for this meeting have already been finalized.
{% endif %} {% if material is not None %}

{% if material.active %} {% if material.is_url %} An external URL for this material was set at {% else %} A file for this material type was uploaded at {% endif %} {% with tm=material.document.time|utc %} {{ tm|date:"H:i:s" }} UTC on {{ tm|date:"Y-m-d" }}.{% endwith %} {% else %} This material has been removed and will not appear in the proceedings. {% endif %}

{% endif %} {% block intro %}{% endblock %} {% block edit_form %}
{% csrf_token %} {% bootstrap_form form %} {# To replace the form but keep default buttons, use block.super in the edit_form block #} {% block form_buttons %} {% buttons %} Back {% endbuttons %} {% endblock %}
{% endblock %} {% endblock content %}