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

{% for l in data['links'] if l.rel == 'collection' %} {{ l['title'] }} {% endfor %}

Items in this collection.

{% if data['features'] %}
Warning: Higher limits not recommended!
Limit:
{% for link in data['links'] %} {% if link['rel'] == 'prev' and data['startindex'] > 0 %} Prev {% elif link['rel'] == 'next' and data['features'] %} Next {% endif %} {% endfor %}
{% 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 %}
id{{ k }}
{{ ft.id }}{{ v | urlize(20) }}
{% else %}

No items

{% endif %}
{% endblock %} {% block extrafoot %} {% if data['features'] %} {% endif %} {% endblock %}