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

logo of {{ institution.name }}{% if institution.department %}: {{ institution.department }}{% endif %}

{% endif %} {% if institution.original_name %}

{{ institution.original_name }}

{% else %}

{{ institution.name }}

{% endif %}

{{ institution.address }}
{% if institution.postcode %}{{ institution.postcode }}{% endif %} {{ institution.city }}
{{institution.country }}

{{ institution.website }}

{{institution.name}}{% if institution.department %}: {{ institution.department }}{% endif %}

{{ institution.description | safe }}

{% trans "Affiliated Researchers" %}

{% for user in institution.affiliated_users.all %}
{% if user.image %} {% else %} {% endif %}

{{user.get_full_name}}

{% for affiliation in user.get_main_affiliation %} {% if affiliation.main %}

{{ affiliation.position }}

{% endif %} {% endfor %}
{# media #} {% endfor %}
{% else %}

{% trans "No institution found" %}!

{% endif %} {% endblock %}