{% extends "geonode_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% block title %}{{ resource.title }} — {{ block.super }}{% endblock %} {% block body_class %}data{% endblock %} {% block body_outer %}
{% trans "Identification" %}

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

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

{% if resource.owner %} {% with resource.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" %}

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

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

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

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

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

{% with resource.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 %}