{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% load i18n %} {% load l10n %} {% load reviews %} {% block title %}{{ block.super }} :: {{resource.name}}{% endblock %} {% block list_of_items %} {% if resource.image2 %}
{% endif %}

{{resource.name}}

{% trans "Created" %} {{resource.dateCreated}}
{% trans "Updated" %} {{resource.dateUpdated}}

{{ resource.abstract | safe }}

{% trans "Publish information" %}

{% if resource.authors.all %} {% endif %} {% if resource.publisher %} {% endif %} {% if resource.datePublished %} {% endif %} {% if resource.license %} {% endif %} {% if resource.resourceDOI %} {% endif %}
{% trans "Authors"} {% for author in resource.authors.all %}{{ author }}; {% endfor %}
{% trans "Publisher" %} {{resource.publisher}}
{% trans "Year of publication" %}: {{resource.datePublished}}
{% trans "License" %}: {{resource.license}}
DOI: {{resource.resourceDOI}}
{% if resource.organisation.all %}

{% trans "Links with projects and/or organisations" %}

{% for organisation in resource.organisation.all %}
{% include "horizontal_card_organisation.html" %}
{% for project in resource.project.all %}
{% include "horizontal_card_project.html" %}
{% endfor %}
{% endfor %} {% endif %}
{% if isTrainingResource %} {% trans "Go to Training" %} {% else %} {% trans "Go to Resource" %} {% endif %} {% if resource.creator == user or user.is_staff or user.id in cooperators %} {% trans "Edit" %} {% endif %} {% if user.is_authenticated %} {% endif %}
{% if user.is_staff %} {% trans "Contact submitter" %}
{% endif %}
{% trans "Language" %}
{% get_language_info_list for LANGUAGES as languages %} {% for language in languages %} {% if language.code == resource.inLanguage %} {{language.name_translated | title}} {% endif %} {% endfor %}
{% trans "Keywords" %}
{% for keyword in resource.keywords.all %} {{keyword | title}} {% endfor %}
{% trans "Theme" %}
{% for theme in resource.theme.all %} {{ theme | title }} {% endfor %}
{% trans "Category" %}
{{resource.category | title }}
{% endblock list_of_items %} {% block scripts %} {{ permissionForm.media.js }} {% endblock scripts %}