{% extends "layout.html" %} {% block headers %} {% endblock %} {% block submenu %} {% endblock %} {% block body %}

Collections

{%- if draft_collections %}

Drafts

{% for collection in draft_collections: %} {% endfor %}
Collection Created at Actions
{{collection.title}} ({{collection.number_of_datasets | default("0", False)}}) {{collection.created_date | truncate(10,False,'')}} {% if not collection.is_public %} {% endif %}
{%- elif may_deposit %}

You don't have any unpublished collections (yet).

Create new collection
{%- else %}

You have not been invited to collaborate on a collection (yet).

{%- endif %} {% if published_collections %}

Published

{% for collection in published_collections: %} {% endfor %}
Collection Published date Actions
{{collection.title}} ({{collection.number_of_datasets | default("0", False)}}) {{collection.published_date | truncate(10,False,'')}} {% if not collection.has_draft %}{% endif %}
{% endif %}
{% endblock %}