{% extends "public/base.html" %} {% block title %}Artworks — {{ gallery.public_name or gallery.name }}{% endblock %} {% block content %}

{{ _("Collection") }}

{% if selected_artist or selected_medium or price_min or price_max %} {{ _("Clear") }} {% endif %}
{{ artworks|length }} work{{ 's' if artworks|length != 1 }}
{% for aw in artworks %} {% set img = aw.images[0] if aw.images else none %}
{% if img and img.iiif_url %} {{ aw.title }} {% else %}
{% endif %}
{{ aw.title }}
{% if aw.contact_artist %}{{ aw.contact_artist.first_name }} {{ aw.contact_artist.last_name }}{% endif %}
{% if aw.price %}
{{ aw.price|ch_currency(aw.currency or 'CHF') }}
{% endif %}
{% endfor %}
{% endblock %}