* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
26 lines
939 B
HTML
26 lines
939 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% origin %}
|
|
{% load ietf_filters static django_bootstrap5 %}
|
|
{% block title %}Email summary of assigned review requests for {{ group.acronym }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Email summary of assigned review requests
|
|
<br>
|
|
<small class="text-body-secondary">{{ group.acronym }}</small>
|
|
</h1>
|
|
{% if review_assignments %}
|
|
<form class="my-3 email-open-review-assignments" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-primary" type="submit" name="action" value="email">Send</button>
|
|
<a href="{{ back_url }}" class="btn btn-secondary float-end">Back</a>
|
|
</form>
|
|
{% else %}
|
|
<p>
|
|
There are currently no open requests.
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %} |