{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load ietf_filters %}
{% load static %}
{% block pagehead %}
{% endblock %}
{% block title %}Email expansions for {{ doc.name }}-{{ doc.rev }}{% endblock %}
{% block content %}
{% origin %}
{{ top|safe }}
{% if aliases %}
Email aliases
{% endif %}
Recipient expansions
| Mail trigger |
To |
Cc |
{% for trigger,desc,to,cc in expansions %}
| {{trigger}} |
{{to|join:', '}} |
{{cc|join:', '}} |
{% endfor %}
{% endblock content %}
{% block js %}
{% endblock %}