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
28 lines (24 loc) · 1.04 KB
/
remind_action_holders.html
File metadata and controls
28 lines (24 loc) · 1.04 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2020, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load bootstrap3 %}
{% load person_filters %}
{% block title %}
Send reminder to action holders for {{ titletext }}
{% endblock %}
{% block content %}
{% origin %}
<h1>Send reminder to action holders<br><small>{{ 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>
{% buttons %}
<button type="submit" class="btn btn-primary" name="submit" value="Send reminder">Send</button>
<a class="btn btn-default pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">Cancel</a>
{% endbuttons %}
</form>
{% endblock %}