{% extends "base.html" %} {% load static %} {% block title %}Confirm Delete - {{ product.name }}{% endblock %} {% block header_title %}Confirm Delete{% endblock %} {% block content %}
Confirm Product Deletion
Warning! This action cannot be undone.

Are you sure you want to delete the following product?

{% if product.image %} {{ product.name }} {% else %}
{% endif %}
{{ product.name }}

{{ product.category.name|default:"Uncategorized" }} | SKU: {{ product.sku|default:"--" }}

Current Stock: {{ product.quantity }}
Price: KSh {{ product.price }}
{% csrf_token %}
Cancel
{% endblock %}