{% extends 'base.html' %} {% block title %}Create Product{% endblock title %} {% block page_content %} {% include 'messages.html' %}
Add New Product
{% csrf_token %} {{ form.as_p }}
10 Most Recent Products
{% if products|length > 0 %} {% for product in products %} {% endfor %}
#NameSku codeSupplierManufacturerDescription
{{ product.num }}. {{ product.name }} {{ product.sku_code }} {{ product.supplier }} {{ product.manufacturer }} {{ product.description }}
{% else %}
No products have been added yet
{% endif %}
{% endblock page_content %}