{% extends "_base.html" %} {% block title %}{{ super() }} {% trans %}TileSets{% endtrans %} {% endblock %} {% block crumbs %}{{ super() }} {% if 'collection_path' in data %} / {% trans %}Collections{% endtrans %} / {{ data['collection_title'] }} {% endif %} / {% trans %}TileSets{% endtrans %} {% endblock %} {% block body %}

{% trans %}Tile sets available for this collection{% endtrans %}

{% for col in data['tilesets'] %} {% endfor %}
{% trans %}Title{% endtrans %} {% trans %}Description{% endtrans %}
{{ col['tileMatrixSet'] | striptags | truncate }} {{ col['title'] | striptags | truncate }}
{% endblock %}