{% include "base/resourcebase_info_panel.html" %}
{% if resource.attribute_set.all %}
{% trans "Attribute Name" %}
{% trans "Range" %}
{% trans "Average" %}
{% trans "Median" %}
{% trans "Standard Deviation" %}
{% for attribute in resource.attributes %}
{{ attribute }}
{% if attribute.unique_values == "NA" %}
{{ attribute.unique_values }}
{% else %}
{% for value in attribute.unique_values_as_list %}
{{ value }}
{% endfor %}
{% endif %}
{{ attribute.average|floatformat:"2" }}
{{ attribute.median|floatformat:"2" }}
{{ attribute.stddev|floatformat:"2" }}
{% endfor %}
{% endif %}
{% block social_links %}
{% if SOCIAL_BUTTONS %}
{% include "social_links.html" %}
{% endif %}
{% endblock %}
{% if GEOGIT_ENABLED and resource.link_set.geogit %}
{% with "_geogit_layer_detail.html" as geogit_template %}
{% with resource as obj %}
{% include geogit_template %}
{% endwith %}
{% endwith %}
{% endif %}
{% if request.user.is_authenticated %}
{% trans "Rate this layer" %}
{% user_rating request.user resource "layer" as user_layer_rating %}
{% endif %}
{% trans 'Average Rating' %}
{% overall_rating resource "layer" as layer_rating %}
{% num_ratings resource as num_votes %}
({{num_votes}})