48 lines
2 KiB
HTML
48 lines
2 KiB
HTML
{# bs5ok #}
|
|
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2021, All Rights Reserved #}
|
|
{% load origin tz %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Edit {{ material_type.name }} for {{ meeting }} Proceedings{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
{% block content_header %}
|
|
Edit Proceedings Material
|
|
<br>
|
|
<small class="text-muted">{{ meeting }} {{ material_type.name }}</small>
|
|
{% endblock %}
|
|
</h1>
|
|
{% if meeting.proceedings_final %}
|
|
<div class="alert alert-warning my-3">The proceedings for this meeting have already been finalized.</div>
|
|
{% endif %}
|
|
{% if material is not None %}
|
|
<p class="my-3">
|
|
{% 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 %}
|
|
</p>
|
|
{% endif %}
|
|
{% block intro %}{% endblock %}
|
|
{% block edit_form %}
|
|
<form class="edit-proceedings-material my-3" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{# To replace the form but keep default buttons, use block.super in the edit_form block #}
|
|
{% block form_buttons %}
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url 'ietf.meeting.views_proceedings.material_details' num=meeting.number %}">
|
|
Back
|
|
</a>
|
|
<button class="btn btn-primary" type="submit">{% firstof submit_button_label 'Save' %}</button>
|
|
{% endblock %}
|
|
</form>
|
|
{% endblock %}
|
|
{% endblock %} |