* fix: use meeting timezone for agenda_by_(room|type) * refactor: use timezone.override instead of timezone.activate/deactivate * fix: add timezone info in create-charter-newrevisiondocevents * fix: use meeting timezone for recording.html template * fix: use meeting timezone for slide submission timeslot display * fix: use meeting timezone for schedule diff template * fix: use meeting timezone for edit_meeting_timeslots_and_misc_sessions * fix: use meeting timezone for materials() view * fix: use meeting timezone for proceedings() view * refactor: force timestamps to utc in important_dates_for_meeting.ics Has no effect now, but guarantees consistency with template's assertion that its timestamps are in UTC. * fix: use meeting timezone for a couple interim meeting templates * fix: use meeting timezone for propose_session_slides template * fix: use meeting timezone for upload_session_*.html * fix: use meeting timezone for a couple session templates
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static django_bootstrap5 tz %}
|
|
{% 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|timezone:session.meeting.time_zone|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 %} |