{% translate 'Add Email Pipe' %}
{% translate 'Create an Email Pipe' %}
{% translate "You can pipe your emails to a program or script. Please send the full command to receive the piped emails. The pips doesn't store emails, it simply pipes the email to the given command." %}
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{% else %}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}