Datasets
Drafts
{%- if draft_datasets: %}
Dataset |
Type |
Size |
Created at |
Actions |
{% for article in draft_datasets: %}
{{article.title}}{% if article.is_shared_with_me %}Shared with me{% endif %} |
{{article.defined_type_name | default("undefined", False)}} |
{{article.storage_used}} |
{{article.created_date | truncate(10,False,'')}} |
{% if not article.is_shared_with_me %}{% endif %} |
{% endfor %}
{%- else %}
You don't have draft datasets (yet).
{%- endif %}
{%- if review_datasets: %}
Under review
Dataset |
Type |
Size |
Submitted at |
Status |
Actions |
{% for article in review_datasets: %}
{{article.title}} |
{{article.defined_type_name | default("undefined", False)}} |
{{article.storage_used}} |
{{article.review_submit_date | truncate(10,False,'')}} |
{{article.review_status | default("unassigned", False)}} |
{% if not article.is_shared_with_me %}{% endif %} |
{% endfor %}
{%- endif %}
{%- if published_datasets: %}
Published
Dataset |
Type |
Size |
Created at |
Actions |
{% for article in published_datasets: %}
{{article.title}} |
{{article.defined_type_name | default("undefined", False)}} |
{{article.storage_used}} |
{{article.created_date | truncate(10,False,'')}} |
{%- if not article.has_draft %}{% endif %}
|
{% endfor %}
{%- endif %}
{% endblock %}