{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar-title %}{% trans "Mail Template" %} - {{ mail_template.name }}{% endblock %} {% block appbar-actions %} {% trans "Delete" %} {% trans "Edit" %} {% 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 }}
{% else %}
{% trans "This mail template still needs to be configured." %}
{% endif %} {% endblock %}