forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload_material.html
More file actions
43 lines (36 loc) · 1.1 KB
/
upload_material.html
File metadata and controls
43 lines (36 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "meeting/proceedings/edit_material_base.html" %}
{# Copyright The IETF Trust 2015-2021, All Rights Reserved #}
{% load bootstrap3 %}
{% block morecss %}
{{ form.media.css }}
{% endblock %}
{% block title %}
Upload {{ material_type.name }} for {{ meeting }} Proceedings
{% endblock %}
{% block content_header %}
Upload Proceedings Material<br>
<small>
{{ meeting }} {{ material_type.name }}
</small>
{% endblock %}
{% block intro %}
<p>
{% if material is None %}
This will be linked from the {{ meeting }} proceedings under
the title "{{ material_type.name }}".
{% else %}
Select a file or external URL to replace the existing material. This will be linked from the
{{ meeting }} proceedings under the title "{{ material.document.title }}".
{% endif %}
</p>
{% endblock %}
{% block edit_form %}
<form class="upload-material" method="post" enctype="multipart/form-data">
{% csrf_token %}
{% bootstrap_form form %}
{% block form_buttons %}{{ block.super }}{% endblock %}
</form>
{% endblock %}
{% block js %}
{{ form.media.js }}
{% endblock %}