{% load i18n gisserver_tags %} {% block title %}

{{ feature_type.title }}

{% endblock %} {% block description %} {% if feature_type.abstract %}{{ feature_type.abstract|linebreaks }}{% endif %} {% endblock %} {% block metadata %}
{% block metadata-items %}
{% translate "XML Namespace" %}:
{{ feature_type.xml_namespace }}
{% translate "Typename" %}:
{% feature_qname feature_type %}
{% translate "Supported CRS" %}:
{% if GISSERVER_SUPPORTED_CRS_ONLY %} {% blocktranslate with default_crs=feature_type.crs %}Any CRS value is supported, source data uses {{ default_crs }}.{% endblocktranslate %} {% else %} {{ feature_type.supported_crs|join:", " }} {% endif %}
{% if wfs_output_formats %}
{% translate "Formats" %}:
{% block metadata-formats %} {% for output_format in wfs_output_formats %} {{ output_format.title|default:output_format }}{% block format-sep %},{% endblock %} {% endfor %} XML Schema {% endblock %}
{% endif %} {% endblock %}
{% endblock %} {% block fields %}

{% translate "The following fields are available:" %}

{% for field in feature_type.fields %} {% include "gisserver/wfs/feature_field.html" with level=0 %} {% endfor %}
{% translate "Field Name" %}{% translate "Type" %}{% translate "Description" %}
{% endblock %}