{% extends "base.html" %} {% load static %} {% block title %}Edit {{ product.name }} — {{ vendor.store_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block body %}
← Back to Dashboard

Edit Product

{% if errors %}
{% for err in errors %}

{{ err }}

{% endfor %}
{% endif %}
{% csrf_token %}

Product Details

Categorization

Product Images

{% if product.images.all %}

Current images — click × to mark for removal on save.

{% for img in product.images.all %}
{{ img.alt_text|default:product.name }}
{% if forloop.first %}Primary{% else %}Image {{ forloop.counter }}{% endif %}
{% endfor %}

{% endif %}

Upload additional images:

Click to upload or drag & drop
PNG, JPG, WEBP up to 5 MB each
Cancel
{% endblock %}