{% 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 {% endblock %} {% block extrahead %} {% endblock %} {% block body %}

Items

{% if data['features'] %}
{% for k, v in data['features'][0]['properties'].items() %} {% if loop.index < 5 %} {% endif %} {% endfor %} {% for ft in data['features'] %} {% for k, v in ft['properties'].items() %} {% if loop.index < 5 %} {% endif %} {% endfor %} {% endfor %}
Items
id{{ k }}
{{ ft.id }}{{ v | urlize(20) }}
{% else %}

No items

{% endif %}
{% for link in data['links'] %} {% if link['rel'] == 'prev' and data['startindex'] > 0 %} Prev {% elif link['rel'] == 'next' and data['features'] %} Next {% endif %} {% endfor %}
{% endblock %} {% block extrafoot %} {% if data['features'] %} {% endif %} {% endblock %}