{% extends 'base.html' %} {% from '_macros.html' import form_field %} {% block title %}Edit listing ยท TradeHub{% endblock %} {% block content %}
{# Existing images gallery #} {% if product.images %}
{% for img in product.images %}
Photo {{ loop.index }}
{% endfor %}
{% endif %}
{{ form.hidden_tag() }} {# Add more photos #}
Click or drag photos here
{{ form_field(form.title) }}
{{ form_field(form.category) }}
{% for value, label in form.condition.choices %}
{% endfor %}
{{ form_field(form.description) }}
{{ form.price(class="form-input", step='0.01', id='price') }}
{{ form_field(form.location) }}
Cancel {{ form.submit(class="btn btn-primary") }}
{# Delete is a SEPARATE form to avoid nested-form HTML issues #}
{% endblock %}