datatracker/ietf/templates/meeting/request_minutes.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

21 lines
729 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-muted">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 %}