{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% block title %}Mail Recipients{% endblock %} {% block content %} {% origin %}
| Recipient | Triggers | Template | Code |
|---|---|---|---|
| {{recipient.slug}} | {% for mailtrigger in recipient.used_in_to.all %} {{mailtrigger.slug}}{% if not forloop.last %}, {%endif%} {% endfor %}{% if recipient.used_in_to.exists and recipient.used_in_cc.exists %},{% endif %} {% for mailtrigger in recipient.used_in_cc.all %} {{mailtrigger.slug}}{% if not forloop.last %}, {%endif%} {% endfor %} | {{recipient.template}} | {% if recipient.code %}{{recipient.code}}{% endif %} |