* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
22 lines
773 B
HTML
22 lines
773 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2023, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block pagehead %}{{ form.media.css }}{% endblock %}
|
|
{% block title %}Edit "{{ section }}"{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Edit Telechat Agenda Contents
|
|
<br>
|
|
<small class="text-body-secondary">{{ section }}</small>
|
|
</h1>
|
|
<form class="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="{% url 'ietf.iesg.views.telechat_agenda_content_manage' %}">Cancel</a>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}{{ form.media.js }}{% endblock %}
|