{% extends "base.html" %} {% block title %}{{ super() }} {{ data['title'] }} {% endblock %} {% block crumbs %}{{ super() }} / Collections {% for link in data['links'] %} {% if link.rel == 'collection' %} / {{ link['title'] }} {% endif %} {% endfor %} / Items / {{ data['title'] or data['id'] }} {% endblock %} {% block extrahead %} {% endblock %} {% block body %}

Item {{ data['id'] }}

{% for k, v in data['properties'].items() %} {% if k == 'links' %} {% else %} {% endif %} {% endfor %}
Item properties
Property Value
id {{ data.id }}
{{ k }} {{ v | urlize(25) }}
{% for link in data['links'] %} {% if link['rel'] == 'prev' %} Prev {% elif link['rel'] == 'next' %} Next {% endif %} {% endfor %}
{% endblock %} {% block extrafoot %} {% endblock %}