{% extends 'uhepp_vault/base.html' %} {% block content %}

{{ user.first_name }} {{ user.last_name }} {% if user.username == request.user.username %} {% endif %}

{{ user.profile.home_institute }}

Collection {% if user.username == request.user.username %} {% endif %}

{% if user.collections %}
{% for collection in user.collections.all %}
{{ collection.title }} {% if collection.plots.count %} {{ collection.plots.count }} {% endif %}
{{ collection.description }}
{% endfor %}
{% else %}

{{ user.first_name }} has no collections shared with you

{% endif %} {% endblock %}