{% load static %} {% load i18n %} {# _data_sidebar.html #}
{# 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-4 #} {# end _data_sidebar.html #}