{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar-title %}{% trans "Mail Template" %} - {{ mail_template.name }}{% endblock %} {% block appbar-actions %} {% if not mail_template.is_readonly %} {% trans "Edit" %} {% endif %} {% endblock %} {% block content %} {% if mail_template.description %}
{{ mail_template.description }}
{% endif %} {% if mail_template.subject and mail_template.body %}

{% trans "Subject:" %} {{ mail_template.subject }}

{{ mail_template.body }}
{% for workflow in mail_template.get_places_of_use %} {% if forloop.first %}

{% trans "Usage in workflows" %}

{% endif %} {% endfor %} {% else %}
{% trans "This mail template still needs to be configured." %}
{% endif %} {% endblock %}