{% extends "aggregator/base.html" %} {% load pagination_tags %} {% block content %} {% if user.is_superuser %} {% include "aggregator/publish.html" with csw_resourcetype=layer.csw_resourcetype csw_source=layer.url publish_type='Layer' csw_xml=layer.xml %} {% endif %}
{% if user.is_superuser %} {% endif %}
{% if user.is_superuser %} Administrative actions:
{% csrf_token %}
{% endif %}
{% if layer.type = 'Hypermap:WorldMap' %} {% endif %}
Endpoints
Name {{ layer.name }}
Title {{ layer.title }}
Abstract {{ layer.abstract }}
Keywords
    {% for keyword in layer.keywords.all %}
  • {{ keyword.name }}
  • {% endfor %}
Is Public? {{ layer.is_public }}
Is Monitored? {{ layer.is_monitored }}
Username {{ layer.layerwm.username }}
Category {{ layer.layerwm.category }}
Dates {% if layer.layerdate_set.count > 0 %}
    {% if layer.type = 'Hypermap:WorldMap' %}
  • Start Date: {{ layer.layerwm.temporal_extent_start }}
  • End Date: {{ layer.layerwm.temporal_extent_end }}
  • {% endif %} {% for date in layer.layerdate_set.all %} {% if date.type == 0 %}
  • {{ date.date }} Detected
  • {% else %}
  • {{ date.date }} From Metadata
  • {% endif %} {% endfor %}
{% else %} No dates for this layer {% endif %}
Spatial Reference Systems
    {% for srs in layer.service.srs.all %}
  • {{ srs.code }}
  • {% endfor %}
Bounding Box (x0, y0, x1, y1) {{ layer.bbox_x0|floatformat:8 }}, {{ layer.bbox_y0|floatformat:8 }}, {{ layer.bbox_x1|floatformat:8 }}, {{ layer.bbox_y1|floatformat:8 }}
Monitoring Period {% if layer.checks_count > 0 %}
  • First Check: {{ layer.first_check }}
  • Last Check: {{ layer.last_check }}
  • Total Checks: {{ layer.checks_count }}
  • Reliability: {{ layer.reliability }}
  • See full check stats
{% else %} No checks performed so far {% endif %}
{% endblock %}