* fix: Return to the expected schedule after editing session dteails * style: Avoid confusing nested double-quotes in html template * feat: When possible, add "back to agenda" button to edit_timeslots * chore: Propagate 'sched' to links/includes in timeslot_edit.html * chore: Propagate 'sched' to links/includes in edit_timeslot() view * chore: Propagate 'sched' to links/includes in create_timeslot() view * test: Test sched param propagation in timeslot edit views * test: Test sched param propagation in session edit view * test: Fix URL in test_edit_meeting_schedule
21 lines
731 B
HTML
21 lines
731 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2021, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block pagehead %}{{ form.media.css }}{% endblock %}
|
|
{% block title %}Edit session "{{ session }}"{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Edit session
|
|
<br>
|
|
<small class="text-muted">{{ session }}</small>
|
|
</h1>
|
|
<form class="session-details-form my-3" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
<a class="btn btn-secondary float-end" href="{{ editor_url }}">Back</a>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}{{ form.media.js }}{% endblock %} |