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

{{ user.first_name }} {{ user.last_name }}

Visibility: {% if user.profile.visibility >= 30 %} public {% elif user.profile.visibility >= 20 %} internal {% elif user.profile.visibility >= 10 %} private) {% endif %}

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

Edit profile

{% endif %}

Home institute: {{ user.profile.home_institute }}

Collection

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

New collection

{% endif %} {% if user.collections %} {% else %}

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

{% endif %} {% endblock %}