datatracker/ietf/templates/meeting/request_minutes.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

21 lines
738 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{# Copyright The IETF Trust 2018, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static django_bootstrap5 %}
{% block morecss %}#id_body {height:700px;}{% endblock %}
{% block title %}IETF {{ meeting.number }}: Request Minutes{% endblock %}
{% block content %}
{% origin %}
<h1>
Request Minutes
<br>
<small class="text-body-secondary">IETF {{ meeting.number }}
<br>
{{ meeting.city }}, {{ meeting.country }} {{ meeting.venue_name }}</small>
</h1>
<form method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-danger">Send</button>
</form>
{% endblock %}