* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
15 lines
628 B
HTML
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 %} |