{% extends "admin/base_site.html" %} {% load i18n satchmo_util adminmedia %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block extrahead %} {% blackbird_logging %} {% endblock %} {% block content %}

{% blocktrans with product.name as product_name %}Variation Manager for {{ product_name }}{% endblocktrans %}

{% if form.errors %}

{% blocktrans count importform.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} {% endif %}

{% trans "Variations" %}

{% blocktrans %}

The Variation Manager helps create the exact set of variations you need for your Configurable Product

Make choices from the Option Groups below, and then click one of the helper links below them to select or deselect variations which have those options.

Fine tune the active variations by putting a checkmark next to those that you want to keep or create, then then click Update Variations.

{% endblocktrans %}
{{ form.dirty }}
{% for grp in form.optionkeys %} {% with form|lookup:grp as field %} {% endwith %} {% endfor %}
{% trans "Options" %}
{{ field.label_tag }}
{{ field }} {% if field.errors %} {{ field.errors }}
{% endif %}
{% trans "Helper Links" %}
{% for varkey in form.variationkeys %} {% with form|lookup:varkey as field %} {% endwith %} {% endfor %}
{% trans "Variation" %} {% trans "Exists" %} {% trans "Create/Keep" %} {% trans "Name" %} {% trans "SKU" %} {% trans "Slug" %}
{% if form.existing|lookup:varkey %} {{ field.label}} {% else %} {{ field.label_tag }} {% endif %} {% trans {{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% with form.namedict|lookup:varkey as namekey %} {% with form|lookup:namekey as field %} {{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% endwith %} {% endwith %} {% with form.skudict|lookup:varkey as skukey %} {% with form|lookup:skukey as field %} {{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% endwith %} {% endwith %} {% with form.slugdict|lookup:varkey as slugkey %} {% with form|lookup:slugkey as field %} {{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% endwith %} {% endwith %}
{% endblock %}