{% extends "base.html" %} {% block title %}View Collection{% endblock %} {% block content %} {% if uc %} {{ header(uc.name, 'This collection has {}.'.format(numify(trait_obs|count, "record", "records"))) }} {% else %} {{ header('Your Collection', 'This collection has {}.'.format(numify(trait_obs|count, "record", "records"))) }} {% endif %}
{% for this_trait in trait_obs %} {% endfor %}
Record Description Location Mean Max LRS Max LRS Location
{{ this_trait.name }} {{ this_trait.description_display }} {{ this_trait.location_repr }} {{ this_trait.mean }} {{ this_trait.LRS_score_repr }} {{ this_trait.LRS_location_repr }}

{% endblock %} {% block js %} {% endblock %}