{% 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 %} {% trans %}Title{% endtrans %} {% trans %}Description{% endtrans %} {% for col in data['tilesets'] %} {{ col['tileMatrixSet'] | striptags | truncate }} {{ col['title'] | striptags | truncate }} {% endfor %} {% endblock %}