{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block body_class %}catalogue{% endblock %} {% block title %} {% trans "Catalogue management" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

{% trans "Search Products" %}

{% include "partials/form_fields_inline.html" with form=form %}

{% trans "Create new product" %}

{{ queryset_description }}

{% if products %}
{% csrf_token %} {% for product in products %} {% with stockrecord=product.stockrecord %} {% endwith %} {% endfor %}
{% trans "UPC" %} {% trans "Title" %} {% trans "Product class" %} {% trans "Status" %} {% trans "Partner" %} {% trans "Partner SKU" %} {% trans "Price excl. tax" %} {% trans "Price incl. tax" %} {% trans "Number in stock" %} {% trans "Number allocated" %}
{{ product.upc|default:"-" }} {{ product.get_title }} {{ product.product_class.name }} {{ product.status|default:"-" }}{{ stockrecord.partner.name }} {{ stockrecord.partner_sku }} {{ stockrecord.price_excl_tax|currency }} {{ stockrecord.price_incl_tax|currency }} {{ stockrecord.num_in_stock }} {{ stockrecord.num_allocated }} {% trans "Edit" %} {% trans "View on site" %}
{% include "partials/pagination.html" %}
{% else %}

{% trans "No products found." %}

{% endif %} {% endblock dashboard_content %}