{% extends 'base.html' %} {% from '_macros.html' import form_field %} {% block title %}List an item · TradeHub{% endblock %} {% block content %}
{{ form.hidden_tag() }} {# Photos #}
Click or drag photos here
JPG, PNG, WEBP · max 5 MB each
{% if form.images.errors %} {% for e in form.images.errors %}
{{ e }}
{% endfor %} {% endif %}
{{ form_field(form.title, placeholder='e.g. MacBook Pro 13" 2020 — great condition') }}
{{ form_field(form.category) }} {# Condition as radio pills #}
{% for value, label in form.condition.choices %}
{% endfor %}
{% if form.condition.errors %} {% for e in form.condition.errors %}
{{ e }}
{% endfor %} {% endif %}
0 / 2000
{% if form.description.errors %} {% for e in form.description.errors %}
{{ e }}
{% endfor %} {% endif %}
{{ form.price(class="form-input", placeholder='0.00', step='0.01', id='price') }}
{% if form.price.errors %} {% for e in form.price.errors %}
{{ e }}
{% endfor %} {% endif %}
{{ form_field(form.location, placeholder='Campus area, North dorm...') }}
Cancel {{ form.submit(class="btn btn-primary btn-lg", style="flex:1;") }}
{% endblock %}