35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{# bs5ok #}
|
|
{% 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 %} |