{% extends "base.html" %} {% load project_tags %} {% load i18n %} {% load static %} {% load crispy_forms_tags %} {% load leaflet_tags %} {% load reviews %} {% load eucs_platform_translate %} {% block head %} {{block.super }} {{ form.media.css }} {{ form.media.js }} {% leaflet_js %} {% leaflet_css %} {% endblock head %} {% block title %}{{ block.super }} :: {{project.name}}{% endblock %} {% block list_of_items %} {% if project.image3 %}
{% endif %}

{{project.name}}

{% trans "Created" %} {{project.dateCreated}}
{% trans "Updated" %} {{project.dateUpdated}}
{% if hasTranslation %} {% for translation in project.translatedProject.all|dictsort:"id" %} {% if translation.inLanguage == LANGUAGE_CODE %} {% if translation.needsUpdate %} {% trans "This translation was done before a project profile update." %} {% trans "Plase help the community by improving it" %} {% trans "here" %} {% endif %}

{{translation.translatedDescription | safe}}

{% if project.howToParticipate %}

{% trans "How to participate" %}

{{translation.translatedHowToParticipate | safe}}

{% endif %} {% if project.equipment %}

{% trans "Needed equipment" %}

{{translation.translatedEquipment |safe}}

{% endif %} {% endif %} {% endfor %} {% else %} {% if LANGUAGE_CODE != 'pt' %} {% trans "This project profile is not available in your selected language." %} {% trans "Please help the community by translating it." %} {% endif %}

{{project.description | safe}}

{% if project.howToParticipate %}

{% trans "How to participate" %}

{{project.howToParticipate | safe}}

{% endif %} {% if project.equipment %}

{% trans "Needed equipment" %}

{{project.equipment |safe}}

{% endif %} {% endif %}
{% with tstatus=status|translate_instance %} {{tstatus}} {% endwith %} {% if project.start_date %} {% trans "from" %} {{ project.start_date | date:"d/m/Y"}} {% endif %} {% if project.end_date %} {% trans "until" %} {{ project.end_date | date:"d/m/Y"}} {% endif %}
{% trans "Keywords" %}
{% for keyword in project.keywords.all %} {{keyword | title}} {% endfor %}
{% if project.topic.all %}
{% trans "Science Topics" %}
{% for topic in project.topic.translated_sorted_by_text %} {{topic}} {% endfor %}
{% endif %} {% if project.participationTask.all %}
{% trans "Participation Tasks" %}
{% for participationTask in project.participationTask.all %} {{participationTask}} {% endfor %}
{% endif %} {% if project.mainOrganisation %}
{% trans "Coordinator" %}
{% include 'horizontal_card_organisation.html' with organisation=project.mainOrganisation %}
{% endif %} {% if project.organisation.all %}
{% trans "Other Organisations involved" %}
{% for organisation in project.organisation.all %} {% include 'horizontal_card_organisation.html' %} {% endfor %}
{% endif %}
{% leaflet_map "map" callback="window.map_init_basic" %}
{% trans "Go to Project" %} {% if project.author_email %} {% trans "Contact e-mail" %} {% endif %} {% if hasPermissionToEdit %} {% trans 'Edit' %} {% trans 'Cooperators' %} {% trans 'Invite new Cooperators' %} {% endif %} {% trans "Translate" %} {% if user.is_authenticated %} {% endif %} {% if user.is_staff %}
{% if project.approved %}
{% trans "Approved" context "fem"%}
{% else %} {% if project.approved == None %}
{% trans "Not moderated" %}
{% else %}
{% trans "Not Approved" context "fem"%}
{% endif %} {% endif %}
{% endif %}
{% if project.featured %} {% endif %} {% if user.is_staff %} {% endif %}
{% endblock list_of_items %} {% block scripts %} {% endblock scripts %}