{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% block title %}Mail Triggers{% endblock %} {% block content %} {% origin %}
| Trigger | Recipients |
|---|---|
| {{mailtrigger.slug}} | To:
{% for recipient in mailtrigger.to.all %}
{% comment %}{{recipient.slug}}{% endcomment %}
{{recipient.slug}}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% if mailtrigger.cc.exists %}
Cc: {% for recipient in mailtrigger.cc.all %} {% comment %}{{recipient.slug}}{% endcomment %} {{recipient.slug}}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %} |