{% extends "base.html" %} {# Copyright The IETF Trust 2015-2021, All Rights Reserved #} {% load origin ietf_filters static tz %} {% block title %}{{ meeting }} : Proceedings Materials{% endblock %} {% block content %} {% origin %}

{{ meeting }} : Proceedings Materials

{% if meeting.proceedings_final %}
The proceedings have been finalized for this meeting.
{% endif %}
Proceedings Materials
{% for mat_type, mat in proceedings_materials %} {% if mat and mat.active %} {% url 'ietf.doc.views_doc.document_main' name=mat.document.name as url %} {% else %} {% endif %} {% if user|has_role:"Secretariat" %} {% endif %} {% endfor %}
Type Title Document Updated
{{ mat_type }} {{ mat }} {{ mat.document }} {% if mat.is_url %} (external URL) {% else %} (uploaded file) {% endif %} {% with timestamp=mat.document.time|utc %} {{ timestamp|date:"Y-m-d" }}
{{ timestamp|date:"H:i:s" }} UTC {% endwith %}
{% url 'ietf.meeting.views_proceedings.upload_material' num=meeting.number material_type=mat_type.slug as upload_url %} {% url 'ietf.meeting.views_proceedings.edit_material' num=meeting.number material_type=mat_type.slug as edit_url %} {% url 'ietf.meeting.views_proceedings.remove_material' num=meeting.number material_type=mat_type.slug as remove_url %} {% url 'ietf.meeting.views_proceedings.restore_material' num=meeting.number material_type=mat_type.slug as restore_url %} {% if mat is None %} Add Material {% elif mat.active %} Replace Material Change title Remove {% else %} Add Material Restore {% endif %}
Back {% endblock %} {% comment %}{% block js %} {% if can_manage_materials %} {% endif %} {% endblock %} {% endcomment %}