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 %}