{% extends "admin/base_site.html" %} {% load i18n admin_modify %} {% block extrastyle %} {% load adminmedia %}{% admin_media_prefix %}css/forms.css {% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block userlinks %}{% trans 'Documentation' %} / {% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %}
{% if form.errors %}

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

{% endif %} {% if form.fields %}
{% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% ifchanged field.field.slug %} {% if not forloop.first %} {% endif %} {% endifchanged %} {% endif %} {% endfor %}
{% trans 'Slug' %} {% trans 'Name' %} {% trans 'Inventory' %} {% trans 'Unit Price' %} {% trans 'Active' %} {% trans 'Featured' %}
{{ field.label_tag }} {{ field.help_text}} {% if field.errors %} {{ field.errors }}
{% endif %} {{ field }}

{% trans 'Helpers' %}

{% trans 'Mark all featured' %}

{% trans 'Clear all featured' %}

{% trans 'Disable all Products with 0 quantity.' %}

{% trans 'Disable ProductVariations with 0 quantity.' %}

{% else %}

{% trans "No inventory items." %}

{% endif %}
{% endblock %}