{% comment %} {% extends 'base.html' %} {% endcomment %} {% load static widget_tweaks %} {% load i18n %} {% block content %} {% if user %} {% include 'data/ic_get_dataset_nav.html' with ds=ds type=type %}
{% if ds.image %} image for dataset {{ ds.title }} {% else %} default image for dataset {{ ds.title }} {% endif %}
{# ds Description Tab #}

{{ds.title}}

{% if ds.subtitle %}

{{ds.subtitle}}

{% endif %}
{# description #} {% if ds.description %}

{% trans "Description" %}

{{ ds.description | safe }}

{% endif %} {% if ds.countries.all %}

Countries
{% for country in ds.countries.all %} {% endfor %}

{% endif %} {% if ds.keyword_tags.all %}

Keywords
{% for keyword in ds.keyword_tags.all %} {% endfor %}

{% endif %} {% if ds.get_language_tags.all %}

Language of data
{% for language in ds.get_language_tags.all %} {% endfor %}

{% endif %} {% if ds.get_methods_of_data_collection_tags.all %}

Methods of data collection
{% for mdc in ds.get_methods_of_data_collection_tags.all %} {% endfor %}

{% endif %} {% if ds.get_methods_of_data_analysis_tags.all %}

Methods of data analysis
{% for mda in ds.get_methods_of_data_analysis_tags.all %} {% endfor %}

{% endif %}
{% else %}

Dataset not found

{% endif %} {% if error_msg %}

{{ error_msg }}

{% endif %} {% endblock %}