{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{{ project.title }}{% endblock %} {% block content %} {% if project %}

{{project.title}}

{% if project.subtitle %}

{{project.subtitle}}

{% endif %} {% if project.image %}

photo of {{ project.title }}

{% endif %}
{# col-md-10 #}
{# row #}

{% trans "Project Description" %}

{{ project.description | safe }}

{% trans "Involved Researchers" %}

{% for user in project.user_projects.all %}
{% if user.image %} {% else %} {% endif %}

{{user.get_full_name}}

{{user.position}}, {{user.institution.name}}

{# media #} {% endfor %}
{# col-md-5 #}
{% else %}

{% trans "No project found" %}!

{% endif %} {% endblock %}