{% 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 %}
{{ ds.description | safe }}
Countries
{% for country in ds.countries.all %}
{% endfor %}
Keywords
{% for keyword in ds.keyword_tags.all %}
{% endfor %}
Language of data
{% for language in ds.get_language_tags.all %}
{% endfor %}
Methods of data collection
{% for mdc in ds.get_methods_of_data_collection_tags.all %}
{% endfor %}
Methods of data analysis
{% for mda in ds.get_methods_of_data_analysis_tags.all %}
{% endfor %}
Dataset not found
{% endif %} {% if error_msg %}{{ error_msg }}
{% endif %} {% endblock %}