{% 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 %}
{% 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 %}

Import

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

{% endif %} {% if form.errors %}

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

{% endif %}

Export

{% if form.fields %}
{% for field in form %} {% ifnotequal field.name 'format' %} {% if field.is_hidden %} {{ field }} {% else %} {% ifchanged field.field.slug %} {% if not forloop.first %} {% endif %} {% endifchanged %} {% endif %} {% endifnotequal %} {% endfor %}
{% trans 'Name' %} {% trans 'Slug' %} {% trans 'Export' %}
{{ field.help_text}} {{ field.label_tag }} {% if field.errors %} {{ field.errors }}
{% endif %}
{{ field }}

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

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

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

{% trans 'Check all' %}

{% trans 'Uncheck all' %}

{% else %}

{% trans "No products." %}

{% endif %}
{% endblock %}