{% extends "default.html" %} {% import "small-annotation-display.html" as annotation_display %} {% block nav_title %}{{ object.id }}{% endblock %} {% block title %}Object {{ object.id }} | {{ site_name }}{% endblock %} {% block content %}
{{ object.id }}
{{ object.description }}
Supersets
{% if object.parent_links %}
{% for parent in object.parent_links %} {% set superset = parent.parent %}
{{ superset.id }}
{% endfor %}
{% else %}
This object has no supersets.
{% endif %} {% if object.child_links %}
Subsets
{% for child in object.child_links %} {% set subset = child.child %}
{{ subset.id }}
{% endfor %}
{% else %}
This object has no subsets.
{% endif %}
Pictures with this object
{% for resource in resources %}
{{ annotation_display.annotation_display(resource) }}
{{ resource.title }}
by
{{ resource.author.formatted_name }}
{% endfor %}
{% include "pagination.html" %}
{% endblock %}