{% extends "base.html" %} {% block title %}Record Sale — {{ artwork.title }} — ArtNode{% endblock %} {% block content %}
{{ form.hidden_tag() }}
Artwork
{% set img = artwork.images[0] if artwork.images else none %} {% if img and img.iiif_url %} {% endif %}
{{ artwork.title }}
{% if artwork.contact_artist %}{{ artwork.contact_artist.first_name }} {{ artwork.contact_artist.last_name }}{% elif artwork.artist %}{{ artwork.artist.first_name }} {{ artwork.artist.last_name }}{% endif %}
{{ artwork.year_from or '' }} {% if artwork.medium %} · {{ artwork.medium|truncate(50) }}{% endif %}
{% if artwork.price %}
Listed: {{ artwork.price|ch_currency(artwork.currency) }}
{% endif %} {% if artwork.is_consignment and artwork.consignment %}
Consignment — Gallery {{ artwork.consignment.gallery_split_pct }}% / Consignor {{ (100 - artwork.consignment.gallery_split_pct)|int }}%
{% endif %}
Sale Details
{{ form.buyer_id.label(class="form-label") }} {{ form.buyer_id(class="form-control") }}
{{ form.price.label(class="form-label") }} {{ form.price(class="form-control", id="priceInput") }} {% if form.price.errors %}
{{ form.price.errors[0] }}
{% endif %}
{{ form.currency.label(class="form-label") }} {{ form.currency(class="form-control") }}
{{ form.tax_method.label(class="form-label") }} {{ form.tax_method(class="form-control", id="taxMethod") }}
{{ form.vat_rate.label(class="form-label") }} {{ form.vat_rate(class="form-control", id="vatRate", placeholder="0.00") }}
{{ form.payment_method.label(class="form-label") }} {{ form.payment_method(class="form-control") }}
{{ form.notes.label(class="form-label") }} {{ form.notes(class="form-control", rows=3, placeholder="Optional notes") }}
Price Breakdown
Sale Price
VAT
{% if artwork.is_consignment and artwork.consignment %}
Gallery Net ({{ artwork.consignment.gallery_split_pct }}%)
Consignor Net ({{ (100 - artwork.consignment.gallery_split_pct)|int }}%)
{% endif %}
Total incl. VAT
Cancel
{% endblock %}