{% extends "default.html" %} {% 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 %}
{% for i in PictureRegion.query.filter_by(resource=resource, object=object) %} {% if i.json.type == "bbox" %}
{% elif i.json.type == "polygon" %}
{% elif i.json.type == "polyline" %}
{% elif i.json.type == "point" %}
{% endif %} {% endfor %}
{{ resource.title }}
{% endfor %}
{% include "pagination.html" %}
{% endblock %}