{% extends "manage/manage_base.html" %} {% load i18n %} {% block left-slot-wrapper %}{% endblock %} {% block content %}

{% trans 'Data' %}

{% csrf_token %}
{% trans "General" %}
{{ form.name.label_tag }}:
{% if field.errors %}
{{ form.name }} {{ form.name.errors }}
{% else %}
{{ form.name }}
{% endif %}
{{ form.shop_owner.label_tag }}:
{% if field.errors %}
{{ form.shop_owner }} {{ form.shop_owner.errors }}
{% else %}
{{ form.shop_owner }}
{% endif %}
{% trans "E-Mails" %}
{{ form.from_email.label_tag }}:
{% if field.errors %}
{{ form.from_email }} {{ form.from_email.errors }}
{% else %}
{{ form.from_email }}
{% endif %}
{{ form.notification_emails.label_tag }}:
{% if field.errors %}
{{ form.notification_emails }} {{ form.notification_emails.errors }}
{% else %}
{{ form.notification_emails }}
{% endif %}
{% trans "Google" %}
{{ form.google_analytics_id.label_tag }}:
{% if field.errors %}
{{ form.google_analytics_id }} {{ form.google_analytics_id.errors }}
{% else %}
{{ form.google_analytics_id }}
{% endif %}
{{ form.ga_site_tracking.label_tag }}:
{{ form.ga_site_tracking }}
{{ form.ga_ecommerce_tracking.label_tag }}:
{{ form.ga_ecommerce_tracking }}
{% trans "Checkout" %}
{{ form.checkout_type.label_tag }}:
{% if field.errors %}
{{ form.checkout_type }} {{ form.checkout_type.errors }}
{% else %}
{{ form.checkout_type }}
{% endif %}
{{ form.confirm_toc.label_tag }}:
{{ form.confirm_toc }}
{% trans "Content" %}
{{ form.description.label_tag }}:
{% if field.errors %}
{{ form.description }} {{ form.description.errors }}
{% else %}
{{ form.description }}
{% endif %}
{{ form.image.label_tag }}:
{% if field.errors %}
{{ form.image }} {{ form.image.errors }}
{% else %}
{{ form.image }}
{% endif %}
{{ form.static_block.label_tag }}:
{% if field.errors %}
{{ form.static_block }} {{ form.static_block.errors }}
{% else %}
{{ form.static_block }}
{% endif %}
{{ default_values }}
{{ portlets|safe }}
{% endblock %}