forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload_session_bluesheets.html
More file actions
34 lines (34 loc) · 1.05 KB
/
upload_session_bluesheets.html
File metadata and controls
34 lines (34 loc) · 1.05 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static django_bootstrap5 %}
{% block title %}
{% if bluesheet_sp %}
Revise
{% else %}
Upload
{% endif %}
Bluesheets for {{ session.meeting }} : {{ session.group.acronym }}
{% endblock %}
{% block content %}
{% origin %}
<h1>
{% if bluesheet_sp %}
Revise
{% else %}
Upload
{% endif %}
Bluesheets for {{ session.meeting }}
<br>
<small class="text-muted">{{ session.group.acronym }}
{% if session.name %}: {{ session.name }}{% endif %}
</small>
</h1>
{% if session_number %}
<h2>Session {{ session_number }} : {{ session.official_timeslotassignment.timeslot.time|date:"D M-d-Y Hi" }}</h2>
{% endif %}
<form enctype="multipart/form-data" method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Upload</button>
</form>
{% endblock %}