{% extends "admin/base_site.html" %} {% load i18n admin_modify %} {% block extrastyle %} {{ block.super }} {% 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 %}

{% trans 'WARNING: THIS FUNCTION IS STILL EXPERIMENTAL. DO NOT USE IN PRODUCTION.' %}

{% trans 'Import' %}

{% if importform.errors %}

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

{% csrf_token %}

{% trans 'Import from fixture file:' %}{{ importform.upload }}

{% endif %}

{% trans 'Export' %}

{% 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 %}
{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% ifchanged field.field.slug %} {% if field.field.product_id %} {% endif %} {% endifchanged %} {% endif %} {% endfor %}
{% trans 'Export?' %} {% trans 'Slug' %} {% trans 'Name' %}
{{ field }} {{ field.label_tag }} {% if field.errors %} {{ field.errors }}
{% endif %}
{{ field.help_text}}

{% trans 'Include images?' %} {{ form.include_images }}

{% trans 'Include categories?' %} {{ form.include_categories }}

{% trans 'Format?' %}{{ form.format }}

{% trans 'Helpers' %}

{% trans 'Check all' %}

{% trans 'Uncheck all' %}

{% else %}

{% trans "No products." %}

{% endif %}
{% endblock %}