{% extends "dashboard/layout.html" %} {% load i18n %} {% load thumbnail %} {% load currency_filters %} {% load url from future %} {% block body_class %}create-page catalogue{% endblock %} {% block title %} {% blocktrans with product_title=amazon_profile.product.get_title %}Create '{{ product_title }}'{% endblocktrans %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block dashboard_content %}

{% blocktrans with product_title=amazon_profile.product.get_title %}Update '{{ product_title }}'{% endblocktrans %}

{% with product=amazon_profile.product %}
{% if not method == "get" %}{% csrf_token %}{% endif %}

{% if product.primary_image.original.url %} {% with image=product.primary_image %} {% thumbnail image.original "50x50" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %} {% endif %} {{ product.get_title }}


{% if product.has_stockrecord %} {% endif %}
{% trans "Product class" %} {{ product.product_class.name }}
{% trans "Seller SKU" %} {{ amazon_profile.sku|default:"-" }}
{% trans "ASIN" %} {{ amazon_profile.asin|default:"-" }}
{% trans "Price excl. tax" %} {{ product.stockrecord.price_excl_tax|currency }}
{% trans "Price excl. tax" %} {{ product.stockrecord.price_incl_tax|currency }}
{% include 'partials/form_fields.html' %}
{% trans "or" %} {% trans "cancel" %}.
{% endwith %} {% endblock %}