{% include "base/resourcebase_info_panel.html" with resourcebase=layer %}
{% if layer.attribute_set.all %}
{% trans "Attribute Name" %} |
{% trans "Range" %} |
{% trans "Average" %} |
{% trans "Median" %} |
{% trans "Standard Deviation" %} |
{% for attribute in layer.attribute_set.all %}
{{ attribute }} |
{% if attribute.unique_values == "NA" %}
{{ attribute.unique_values }} |
{% else %}
|
{% endif %}
{{ attribute.average|floatformat:"2" }} |
{{ attribute.median|floatformat:"2" }} |
{{ attribute.stddev|floatformat:"2" }} |
{% endfor %}
{% endif %}
{% trans "Share This Layer" %}
{% if request.user.is_authenticated %}
{% trans "Rate this layer" %}
{% user_rating request.user layer "layer" as user_layer_rating %}
{% endif %}
{% trans 'Average Rating' %}
{% overall_rating layer "layer" as layer_rating %}
{% num_ratings layer as num_votes %}
({{num_votes}})