{% extends "page_layout.html" %} {% load geonode_auth %} {% load i18n %} {% block title %} {{ layer.title|default:layer.typename }} - {{ block.super }} {% endblock %} {% block head %} {% include "geonode/ext_header.html" %} {% include "geonode/app_header.html" %} {% include "geonode/geo_header.html" %} {{ block.super }} {% endblock %} {% block main %}

{{ layer.title|default:layer.typename }}

{% trans "Abstract" %}: {{ layer.abstract|default:_("No abstract for this layer.") }}

{% if layer.display_type %}

{% trans "Type" %}: {{ layer.display_type }}

{% endif %} {% if layer.keywords %}

{% trans "Keywords" %}: {{ layer.keywords }}

{% endif %} {% if layer.edition %}

{% trans "Edition" %}: {{ layer.edition }}

{% endif %} {% if layer.topic_category %}

{% trans "Category" %}: {{ layer.topic_category.title }}

{% endif %} {% if layer.constraints_use or layer.constraints_other %}

{% trans "Citation" %}: {{ layer.constraints_use}} {{ layer.contraints_other}}

{% endif %} {% if layer.owner %}

{% trans "Owner" %}: {{ layer.owner.username }}

{% endif %} {% if layer.poc %}

{% trans "Point of Contact" %}: {% if layer.poc.user %} {{ layer.poc.user.username }} {% else %}

{% endif %}

{% endif %} {% if layer.attribute_set %}

{% trans "Attributes" %}: {% for attribute in layer.attribute_set.all %} {{ attribute.attribute_label }}, {% endfor %}

{% endif %} {% if layer.supplemental_information %}

{% trans "Supplemental Information" %}: {{ layer.supplemental_information }}

{% endif %} {% if layer.data_quality_statement %}

{% trans "Data Quality Statement" %}: {{ layer.data_quality_statement }}

{% endif %} {% if layer.geographic_bounding_box %}

{% trans "Bounding Box" %}: {{ layer.geographic_bounding_box }}

{% endif %} {% if layer.metadata.crsOptions %}

{% trans "Native SRS" %}: {{ layer.metadata.crsOptions.0|default:_("No SRS specified.") }}

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}