{% 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 %}

Send reminder to action holders
{{ titletext }}

{% csrf_token %} {% bootstrap_form form %}

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 %}.

{% buttons %} Cancel {% endbuttons %}
{% endblock %}