datatracker/ietf/templates/group/reset_next_reviewer.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

15 lines
619 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
{% load origin %}
{% origin %}
{% load ietf_filters static django_bootstrap5 %}
{% block content %}
<h1>Set next reviewer in queue<br><small class="text-muted">{{ group.acronym }}</small></h1>
<form class="my-3" method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary" type="submit">Save</button>
<a class="btn btn-secondary float-end"
href="{% url 'ietf.group.views.reviewer_overview' acronym=group.acronym %}">Back</a>
</form>
{% endblock %}