{% extends "products/view.html" %} {% load i18n %} {% block third_column %}
{% csrf_token %} {{ formset.management_form }}
{% include "form_field_snippet.html" with field=form.code %} {% include "form_field_snippet.html" with field=form.title %} {% include "form_field_snippet.html" with field=form.description %} {% include "form_field_snippet.html" with field=form.is_service %}
{% include "form_field_snippet.html" with field=form.price_purchase_exchange %} {% include "form_field_snippet.html" with field=form.pct_margin_exchange %} {% include "form_field_snippet.html" with field=form.price_notax_exchange %} {% include "form_field_snippet.html" with field=form.price_sales_exchange %}
{% include "form_field_snippet.html" with field=form.price_purchase_stock %} {% include "form_field_snippet.html" with field=form.pct_margin_stock %} {% include "form_field_snippet.html" with field=form.price_notax_stock %} {% include "form_field_snippet.html" with field=form.price_sales_stock %}
{% for f in formset %}
{% include "form_snippet.html" with form=f %}
{% endfor %} {% trans "Add" %}
{% include "form_field_snippet.html" with field=form.pct_vat %} {% include "form_field_snippet.html" with field=form.shipping %} {% include "form_field_snippet.html" with field=form.warranty_period %} {% include "form_field_snippet.html" with field=form.brand %} {% include "form_field_snippet.html" with field=form.categories %}
{% for t in product.tags.all %}
{{ t.tag }}
{% endfor %}
{% include "form_field_snippet.html" with field=form.photo %} {% include "form_field_snippet.html" with field=form.fixed_price %} {% include "form_field_snippet.html" with field=form.is_serialized %}
{% include "form_field_snippet.html" with field=form.part_type %} {% include "form_field_snippet.html" with field=form.labour_tier %} {% include "form_field_snippet.html" with field=form.component_code %} {% include "form_field_snippet.html" with field=form.eee_code %}
{% if product.pk %} {% trans "Cancel" %} {% else %} {% trans "Cancel" %} {% endif %}
{% endblock third_column %} {% block media %} {% endblock media %}