forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremind_action_holders.html
More file actions
34 lines (34 loc) · 1.23 KB
/
remind_action_holders.html
File metadata and controls
34 lines (34 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{# Copyright The IETF Trust 2020, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load django_bootstrap5 %}
{% load person_filters %}
{% block title %}Send reminder to action holder{{ doc.action_holders.all|pluralize }} for {{ titletext }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Send reminder to action holder{{ doc.action_holders.all|pluralize }}
<br>
<small class="text-muted">{{ titletext }}</small>
</h1>
<form enctype="multipart/form-data" method="post">
{% csrf_token %}
{% bootstrap_form form %}
<p>
This reminder will be sent to
{% for person in doc.action_holders.all %}
{% if forloop.last and not forloop.first %}and{% endif %}
{% person_link person %}{% if not forloop.last %},{% endif %}
{% endfor %}.
</p>
<button type="submit"
class="btn btn-primary"
name="submit"
value="Send reminder">Send</button>
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">
Back
</a>
</form>
{% endblock %}