{% extends "product/base.html" %} {% load thumbnail %} {% block js %} {{ block.super }} {% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block rightheader %} <... Back to Listing {% endblock %} {% block content %} {{ block.super }}

Product Detail


{{ product.item_number }}{% if product.title %} - {{ product.title }} {% endif %}


{% if product.pictures.all %} {% thumbnail product.pictures.all.0.file 300x5000 as thumb %} {{ product.pictures.all.0.title }} {% endif %} {{ product.description }}

{% if product.width %} {% endif %} {% if product.height %} {% endif %} {% if product.length %} {% endif %} {% if product.upc %} {% endif %} {% if product.listed_price and perms.product.can_see_listed_price %} {% endif %} {% if product.distributor_stock_price and perms.product.can_see_distributor_stock_price %} {% endif %} {% if product.distributor_no_stock_price and perms.product.can_see_distributor_no_stock_price %} {% endif %}
Width {{ product.width }} {{ product.get_width_quantity_unit_display }}
Height {{ product.height }} {{ product.get_height_quantity_unit_display }}
Length {{ product.length }} {{ product.get_lenght_quantity_unit_display }}
Wattage {{ product.wattage }}
Base {{ product.base }}
UPC {{ product.upc }}
Catalog Page {{ product.catalog_page }}
Listed Price $ {{ product.listed_price }}
Distributor Stock Price $ {{ product.distributor_stock_price }}
Distributor No Stock Price $ {{ product.distributor_no_stock_price }}
UN SPSC code {{ product.un_spsc_code }}

Category

{{ product.category }}

{% for picture in product.pictures.all %} {% if forloop.first %}
Pictures
{% endif %} {% endfor %} {% for document in product.documents.all %} {% if forloop.first %}
Documents
    {% endif %}
  1. {{ document }}
  2. {% if forloop.last %}
{% endif %} {% endfor %} {% if perms.product.rest_can_see_quantity %} {% for inventory in product.inventories.all %} {% if forloop.first %}
Stock
{% endif %} {% endfor %} {% else %} {% if perms.product.can_check_stock %}
Stock Query

You can check the availability of this apparel by entering the quantity you need bellow.

{% endif %} {% endif %}
{% endblock %}