{% if project.status %}
{% endif %}
{% if project.image %}
{% endif %}
{% if project.description %}
{{ project.description | safe }}
{% endif %}
{% if project.acronym %}
- {{ _('Acronym') }}
- {{ project.acronym }}
{% endif %}
{% if project.principal_investigator %}
- {{ _('Principal investigator') }}
- {{ project.principal_investigator }}
{% endif %}
{% if project.funding_agency %}
- {{ _('Funding agency') }}
- {{ project.funding_agency }}
{% endif %}
{% if project.programme %}
- {{ _('Programme') }}
- {{ project.programme }}
{% endif %}
{% if project.reference %}
- {{ _('Reference') }}
- {{ project.reference }}
{% endif %}
{% if project.budget %}
- {{ _('Budget') }}
- {{ project.budget }}
{% endif %}
{% if project.start_date or project.end_date %}
- {{ _('Period') }}
- {% if project.start_date %}{{ project.start_date }}{% endif %} – {% if project.end_date %}{{ project.end_date }}{% endif %}
{% endif %}
{% if project.partners %}
- {{ _('Partners') }}
- {{ project.partners }}
{% endif %}
{% if project.role %}
- {{ _('Role') }}
- {{ project.role }}
{% endif %}
{% if project.link %}
{{ _('More info') }}
{% endif %}
← {{ _('Back to projects') }}
{% endblock %}