19 lines
845 B
HTML
19 lines
845 B
HTML
{% 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 method="post">
|
|
{% csrf_token %}
|
|
<button class="btn btn-danger" type="submit">Continue</button>
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url 'ietf.meeting.views.interim_announce' %}">Back</a>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}{% endblock %} |