datatracker/ietf/templates/group/email_open_review_assignments.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

26 lines
930 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-muted">{{ 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 %}