From 480b7a731a1181ee5d0f1cfd9f059eeb74937fec Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 23 Mar 2020 16:30:54 +0100 Subject: Fix period display on showcase --- showcase/templates/showcase/item-find.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'showcase') diff --git a/showcase/templates/showcase/item-find.html b/showcase/templates/showcase/item-find.html index 1519b8b..403f524 100644 --- a/showcase/templates/showcase/item-find.html +++ b/showcase/templates/showcase/item-find.html @@ -61,13 +61,13 @@
{{data.description|linebreaks}}
{% endif %} {% if data.object_types|length %} -

{% trans "Object type:" %} {{data.object_types|join:" ; "}}

+

{% trans "Object type(s):" %} {{data.object_types|join:" ; "}}

{% endif %} {% if data.materials|length %} -

{% trans "Materials:" %} {{data.materials|join:" ; "}}

+

{% trans "Material(s):" %} {{data.materials|join:" ; "}}

{% endif %} {% if data.datings|length %}

{% trans "Period(s):" %} - {% for dating in data.datings %}{% if forloop.counter0 %} ; {% endif %}{{dating.period}}{% endfor %} + {% for dating in data.datings %}{% if forloop.counter0 %} ; {% endif %}{{dating}}{% endfor %}

{% endif %} {% if data.free_id %}

{% trans "ID:" %} {{data.free_id}}

{% endif %} -- cgit v1.2.3