{% extends 'product_temp/base.html' %} {% block content %}

Add Product

{% if messages %} {% endif %}

Product List

{% for product in products %} {% endfor %}
SKU Product Type Category Product Name Product Description Product Specification Product Price Specification PDF Product Image Other Images Actions 1 Actions 2
{{ product.sku }} {{ product.get_product_type_display }} {{ product.category }} {{ product.product_name }} {{ product.product_description }} {{ product.product_specification_contents }} {{ product.product_price }} {{ product.specification_pdf }} {% if product.product_image_main %} Product Image {% else %} No image available {% endif %} {% for other_image in product.otherimage_set.all %} {{ product.product_name }} Other Image {% endfor %} Edit Delete
{% endblock %}