datatracker/ietf/templates/group/reset_next_reviewer.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

15 lines
628 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-body-secondary">{{ 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 %}