{% extends "layers/layer_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% block title %}{{ layer.typename }} — {{ block.super }}{% endblock %} {% block body_class %}data{% endblock %} {% block body_outer %}
{% trans "Identification" %}

{% if layer.title %}
{% trans "Title" %}
{{ layer.title|truncatechars:80 }}
{% endif %} {% if layer.abstract %}
{% trans "Abstract" %}
{{ layer.abstract|escape|urlize|linebreaks|safe|truncatechars:1000 }}
{% endif %}
{% if LICENSES_ENABLED and LICENSES_DETAIL == 'above' and layer.license %}
{% trans "License" %}
{{ layer.license.name_long }}
{% endif %}
{% for bullet in layer.license.description_bullets %} {{ bullet }}

{% endfor %} {% if layer.license.url %} + For more info see {{ layer.license.url }}. {% endif %}
{% if layer.date %}
{% trans layer.date_type|title %} {% trans "Date" %}
{{ layer.date }}
{% endif %} {% if layer.display_type %}
{% trans "Type" %}
{{ layer.display_type }}
{% endif %} {% if layer.keyword_list %}
{% trans "Keywords" %}
{% for keyword in layer.keyword_list %} {{ keyword }} {% endfor %}
{% endif %} {% if layer.category %}
{% trans "Category" %}
{{ layer.category }} {% if layer.category.description %}{% endif %}
{% if layer.category.description %}
{{ layer.category.description }}
{% endif %} {% endif %} {% if layer.regions.all %}
{% trans "Regions" %}
{{ layer.regions.all|join:", " }}
{% endif %}
{% trans "Published" %}
{% if layer.is_published %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "Featured" %}
{% if layer.featured %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "Owner" %}

{% if layer.owner %} {% with layer.owner as poc %}
{% trans "Name" %}
{{ poc.name_long }}
{% trans "email" %}
{{ poc.email }}
{% trans "Position" %}
{{ poc.position }}
{% trans "Organization" %}
{{ poc.organization }}
{% trans "Location" %}
{{ poc.location }}
{% trans "Voice" %}
{{ poc.voice }}
{% trans "Fax" %}
{{ poc.fax }}
{% if poc.keyword_list %}
{% trans "Keywords" %}
{% for keyword in poc.keyword_list %} {{ keyword }} {% endfor %}
{% endif %} {% endwith %} {% endif %}
{% trans "Information of Layer" %}

{% trans "Identification Image" %}
{% trans "Spatial Resolution" %}
{% if layer.scale %} {{ layer.scale }} {% else %} --- {% endif %}
{% trans "Projetion System" %}
{{ layer.srid }}
{% trans "Extension x0" %}
{{layer.bbox_x0}}
{% trans "Extension x1" %}
{{layer.bbox_x1}}
{% trans "Extension y0" %}
{{layer.bbox_y0}}
{% trans "Extension y1" %}
{{layer.bbox_y1}}
{% trans "Features" %}

{% if LICENSES_ENABLED and LICENSES_DETAIL == 'below' and layer.license %}
{% trans "License" %}
{{ layer.license.name_long }}
{% for bullet in layer.license.description_bullets %} {{ bullet }}

{% endfor %} {% if layer.license.url %} + For more info see {{ layer.license.url }}. {% endif %}
{% endif %} {% if layer.maintenance_frequency %}
{% trans "Maintenance Frequency" %}
{{ layer.maintenance_frequency_title }}
{% endif %} {% if layer.restriction_code_type or layer.constraints_other %}
{% trans "Restrictions" %}
{% if layer.constraints_other %} {{ layer.constraints_other }} {% else %} {{ layer.restriction_code_type }} {% endif %}
{% endif %} {% if layer.edition %}
{% trans "Edition" %}
{{ layer.edition}}
{% endif %} {% if layer.purpose %}
{% trans "Purpose" %}
{{ layer.purpose|escape|urlize|linebreaks|safe|truncatechars:160 }}
{% endif %} {% if layer.language %}
{% trans "Language" %}
{{ layer.language_title }}
{% endif %} {% if layer.temporal_extent_start and layer.temporal_extent_end %}
{% trans "Temporal Extent" %}
{{ layer.temporal_extent_start }} - {{ layer.temporal_extent_end }}
{% endif %} {% if layer.data_quality_statement %}
{% trans "Data Quality" %}
{{ layer.data_quality_statement }}
{% endif %} {% if layer.supplemental_information %}
{% trans "Supplemental Information" %}
{{ layer.supplemental_information|truncatechars:160|escape|urlize|linebreaks|safe }}
{% endif %} {% if layer.spatial_representation_type %}
{% trans "Spatial Representation Type" %}
{{ layer.spatial_representation_type }}
{% endif %}
{% if layer.poc %} {% trans "Contact Points" %}

{% trans "Name" %}
{{ layer.poc.name_long }}
{% trans "email" %}
{{ layer.poc.email }}
{% trans "Position" %}
{{ layer.poc.position }}
{% trans "Organization" %}
{{ layer.poc.organization }}
{% trans "Location" %}
{{ layer.poc.location }}
{% trans "Voice" %}
{{ layer.poc.voice }}
{% trans "Fax" %}
{{ layer.poc.fax }}
{% if poc.keyword_list %}
{% trans "Keywords" %}
{% for keyword in layer.poc.keyword_list %} {{ keyword }} {% endfor %}
{% endif %}
{% endif %} {% trans "References" %}

{% trans "Link Online" %}
{{ layer.get_absolute_url }}
{% trans "Metadata Page" %}
{{ layer.get_absolute_url }}/metadata_detail
{% if layer.doc_file %}
{% trans "Online Link" %}
{{ layer.get_absolute_url }}/download
{% endif %}
{% for link in layer.link_set.download %}
{{link.name}}
{{layer.name}}.{{link.extension}}
{% endfor %}
{% for link in layer.link_set.ows %}
{{link.name}}
Geoservice {{link.link_type}}
{% endfor %}
{% if layer.metadata_author %} {% trans "Metadata Author" %}

{% with layer.metadata_author as poc %}
{% trans "Name" %}
{{ poc.name_long }}
{% trans "email" %}
{{ poc.email }}
{% trans "Position" %}
{{ poc.position }}
{% trans "Organization" %}
{{ poc.organization }}
{% trans "Location" %}
{{ poc.location }}
{% trans "Voice" %}
{{ poc.voice }}
{% trans "Fax" %}
{{ poc.fax }}
{% if poc.keyword_list %}
{% trans "Keywords" %}
{% for keyword in poc.keyword_list %} {{ keyword }} {% endfor %}
{% endif %} {% endwith %}
{% endif %}
{% endblock %}