{% extends "base.html" %} {% load wger_extras i18n django_bootstrap_breadcrumbs %} {% block title %}{% trans 'Email' %} - {{ gym }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% if perms.gym.manage_gyms %} {% breadcrumb "Gyms" "gym:gym:list" %} {% endif %} {% breadcrumb_raw gym "gym:gym:user-list" gym.pk %} {% breadcrumb "Emails" "email:email:overview" gym.pk %} {% breadcrumb "Add" "email:email:add-gym" gym.pk %} {% endblock %} {% block content %}

{% trans 'Current version' %}

{% csrf_token %}
{% trans 'Subject' context 'As in "email subject"' %}
{{ form.cleaned_data.subject }}
{% trans 'Content' context 'As in "content of an email"' %}
{{ form.cleaned_data.body }}
{% render_form_submit 'Emails verschicken' %}

{% trans 'Correction' %}

{% render_form_fields form 'Correction' %}
{% endblock %} {% block sidebar %}

{% trans "Steps" %}

  1. {% trans "Fill in the form" %}
  2. {% trans "You will receive a preview email for you to review" %}
  3. {% trans "You can update and correct the content as often as you need before sending the emails" %}
{% endblock %}