{% extends "base.html" %} {% block title %}{{ fair.name }} — ArtNode{% endblock %} {% block content %}
Assigned to Fair ({{ fair_artwork_ids|length }})
{% for sale in fair.sales %} {% if sale.status != "cancelled" and sale.line_items %} {% set line = sale.line_items[0] %}
{% set img = line.artwork.images[0] if line.artwork.images else none %} {% if img and img.iiif_url %} {% endif %}
{{ line.artwork.title }}
{% if line.artwork.contact_artist %}{{ line.artwork.contact_artist.last_name }}{% elif line.artwork.artist %}{{ line.artwork.artist.last_name }}{% endif %}
{{ line.artwork.status }} {% if line.artwork.price %}
{{ line.artwork.price|ch_currency(line.artwork.currency) }}
{% endif %}
{% endif %} {% else %}

No artworks assigned yet.

{% endfor %}
Add to Fair
{% for aw in available %} {% if aw.id not in fair_artwork_ids %}
{% set img = aw.images[0] if aw.images else none %} {% if img and img.iiif_url %} {% endif %}
{{ aw.title }}
{% if aw.artist %}{{ aw.artist.last_name }}{% endif %}
{% endif %} {% endfor %}
{% endblock %}