QGIS/resources/server/api/ogc/templates/wfs3/describeCollections.html
Alessandro Pasotti 92ac7a2e93
[server] Server api and WFS3 (#10016)
Implementation of OGC API and WFS3 core draft specification
2019-08-06 16:38:21 +02:00

15 lines
380 B
HTML

<!-- template for the WFS3 API collections page -->
{% include "header.html" %}
<h1>Collections</h1>
{% for collection in collections %}
<h3><a href="{% for link in links_filter( collection.links, "type", "text/html" ) %}
{{ path_chomp( link.href ) }}
{% endfor %}">{{ collection.title }}</a></h3>
{% endfor %}
{% include "footer.html" %}