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