datatracker/ietf/templates/meeting/interim_skip_announce.html
Lars Eggert eb5423d084
ci: Also check generated HTML with the "vnu" validator (#3682)
* ci: Also check generated HTML with the "vnu" validator

Because HTML Tidy apparently misses a bunch of errors.

* thead -> tbody

* More fixes

* More fixes

* Start checker in test runner
2022-03-21 12:50:23 -05:00

19 lines
848 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 %}
<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 %}