{% extends "base.html" %} {% block title %}POS — {{ fair.name }} — ArtNode{% endblock %} {% block content %}
{% if artworks %}
{% for aw in artworks %}
{% set img = aw.images[0] if aw.images else none %} {% if img and img.iiif_url %} {% else %}
{% endif %}
{{ aw.title }}
{% if aw.artist %}{{ aw.artist.first_name }} {{ aw.artist.last_name }}{% endif %}
{% if aw.price %}
{{ aw.price|ch_currency(aw.currency) }}
{% else %}
Price on request
{% endif %}
Available
{% endfor %}
{% else %}

No artworks available

All artworks have been sold or none assigned.

Assign Artworks
{% endif %}
{% endblock %}