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

Send reminder to action holder{{ doc.action_holders.all|pluralize }}
{{ 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 %}.

Back
{% endblock %}