{% extends "public/base.html" %} {% block title %}{{ artwork.title }} — {{ gallery.public_name or gallery.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% set images = artwork.images %} {% if images %}
{{ artwork.title }} {% if images|length > 1 %}
{% for img in images %} {% endfor %}
{% endif %}
{% else %}
No image available
{% endif %}
{% set desc, desc_lang = get_trans(artwork, "description") %} {% if desc %}

{{ desc }}

{% endif %} {% if artwork.contact_artist %} {% endif %}
{{ artwork.title }}
{% if artwork.year_from %}{{ artwork.year_from }}{% if artwork.year_to and artwork.year_to != artwork.year_from %}–{{ artwork.year_to }}{% endif %}{% endif %}
{% set med, med_lang = get_trans(artwork, "medium") %} {% if med or artwork.medium %}
{{ _("Medium") }}{{ med or artwork.medium }}
{% endif %} {% if artwork.dimensions %}
{{ _("Dimensions") }}{{ artwork.dimensions }}
{% endif %} {% if artwork.inventory_number %}
{{ _("Reference") }}{{ artwork.inventory_number }}
{% endif %}
{{ _("Availability") }} {% if artwork.status == "available" %}{{ _("Available") }} {% elif artwork.status == "sold" %}{{ _("Sold") }} {% else %}{{ artwork.status|replace("_", " ")|title }}{% endif %}
{{ _("Price") }} {% if artwork.show_price and artwork.price %}{{ "{:,.0f}".format(artwork.price)|replace(",", "'") }} {{ artwork.currency }} {% else %}{{ _("Price on request") }}{% endif %}
{% if artwork.status == "available" %}
{{ _("Enquire about this work") }}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}