datatracker/ietf/templates/meeting/interim_skip_announce.html
Lars Eggert cf629a42ad And more fixes.
- Legacy-Id: 19877
2022-01-25 10:14:25 +00:00

20 lines
870 B
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static django_bootstrap5 widget_tweaks %}
{% block title %}Interim Meetings Skip Announcement{% endblock %}
{% block content %}
{% origin %}
<h1>Interim Meetings Skip Announcement</h1>
<p class="alert alert-info my-3">
You are requesting to complete scheduling of the interim meeting for <b>{{ meeting.session_set.first.group.acronym|upper }}</b> on <b>{{ meeting.date }}</b> without sending an announcement.
</p>
<form action="" method="post">
{% csrf_token %}
<input class="btn btn btn-danger" type="submit" value="Continue">
<a class="btn btn-secondary float-end"
href="{% url 'ietf.meeting.views.interim_announce' %}">Back</a>
</form>
{% endblock %}
{% block js %}{% endblock %}