{% extends 'uhepp_vault/base.html' %} {% load humanize %} {% block title %}Collections - uhepp hub{% endblock %} {% block content %}

Collections

{% if collection_list %}
{% for collection in collection_list %}
{{ collection.title }} by {{ collection.owner.username}} {% if collection.plots.count %} {{ collection.plots.count }} {% endif %}
{{ collection.description }} {{ collection.activity|naturaltime }}
{% endfor %}
{% else %}

There are no collections shared with you

{% endif %} {% endblock %}