{% extends 'base.html' %} {% block title %}Update Product{% endblock title %} {% block page_content %} {% include 'messages.html' %}
Edit {{ product.name }}
{% csrf_token %} {{ form.as_p }}
{{ product }}
{% if product %}
Name {{ product.name }}
Sku code {{ product.sku_code }}
Manufacturer {{ product.manufacturer }}
Supplier {{ product.supplier }}
Description {{ product.description }}
{% else %}
No products have been added yet
{% endif %}
{% endblock page_content %}