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

Collections

Drafts

{% if draft_collections %}
{% 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 %}
{% else %}

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

Create new collection
{% 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 %}