{% extends 'cubane/backend/base.html' %} {% block content %}

Product Varieties for {{ product.title }}

{% if product.sku_enabled %}
Some Varieties are depending on SKU numbers and will not appear on this screen. Use the SKU screen instead.
{% endif %} {% if assigned %}

Assigned Varieties

{% for v in assigned %} {% endfor %}
Title Assigned Options Type Actions
{{ v.title }} {{ v.assigned_options_display }} {{ v.get_style_display }} edit unassign
{% endif %} {% if unassigned %}

Available Varieties (currently unassigned)

{% for v in unassigned %} {% endfor %}
Title Options Type Actions
{{ v.title }} {{ v.get_options_excerpt_display }} {{ v.get_style_display }} assign
{% endif %} {% if not assigned and not unassigned %}

No Varieties available yet. Create new Varieties within the Variety Section.

{% endif %}
Ok
{% endblock %}