{% extends "layout.html" %} {% block content %}
Copies in collections
{% for x in copiesincollection['results']['bindings'] %}
{% if "image" in x %}
{% else %}
{% endif %}
{{ x["collectionLabel"]["value"]}}
{% endfor %}
Related works
{% for x in relatedworks['results']['bindings'] %}
{% if "image" in x %}
{% else %}
{% endif %}
{{ x["relatedWorksLabel"]["value"]}}
{% if "daterelatedWorks" in x %} {{ x["daterelatedWorks"]["value"] | replace("T00:00:00Z", "") }} {% endif %}
{% endfor %}
{% endblock content %}