{% extends 'base.html' %} {% load static %} {% load i18n %} {# {% load threadedcomments_tags %} #} {% load comments %} {% block title %}{{ ds.title }}{% endblock %} {% block content %} {% if ds %}
{% include 'data/ic_get_dataset_nav.html' with ds=ds type='description' load=True %}
{% comment %} {# comment list #} {% get_comment_list for ds as comment_list %} {% render_comment_list for ds %} {# comment form #}

Add a comment

{% render_comment_form for ds %} {% endcomment %}
{# user #}

{% trans "Data Uploader" %}

{% if ds.user.image %} {% else %} {% endif %}

{{ ds.user.get_academic_name }}

{% for affiliation in ds.user.get_main_affiliation %}

{{ affiliation }}

{% endfor %}
{# media #}
{# end user #} {# category #} {% for cat in ds.categories.all %}

Category

discuss-data/{{ cat.slug }}

{% if cat.curators.all %}

Curated by {% for curator in cat.curators.all %}{{ curator.get_academic_name }}{% endfor %}

{% endif %} {% comment %}
{% if curator.image %} {% else %} {% endif %}

{{ curator.get_academic_name }}

{% for affiliation in curator.get_main_affiliation %}

{{ affiliation }}

{% endfor %}
{# media #} {% endcomment %} {% if cat.sponsors.all %}

Category supported by

{% for sponsor in cat.sponsors.all %} {# media #} {% endfor %} {% endif %}
{% endfor %} {# end category #} {# funding & sponsors #} {% if ds.sponsors.all %}

{% trans "Dataset Funding" %}

{% if ds.funding %}

{{ ds.funding }}{% endif %} {% for sponsor in ds.sponsors.all %}

{# media #} {% endfor %}
{% else %} {% if ds.funding %}

{% trans "Dataset Funding" %}

{{ ds.funding }}

{# media #}
{% endif %} {% endif %} {# end funding & sponsors #} {# institution #} {% if ds.institution %}

{% trans "Institution" %}

{{ds.institution.name}}

{{ds.institution.city}}, {{ds.institution.country}}

{# media #}
{% endif %} {# end institution #} {% if ds.get_publications %}

{% trans "Related Publications" %}

    {% for ds_pub in ds.get_dataset_publications %}
  • {{ ds_pub }}
  • {% endfor %}
{# media #}
{% endif %}
{# col-md-5 #}
{% else %}

{% trans "No ds found" %}!

{% endif %} {% endblock %}