{% extends 'base.html' %} {% block title %}{{ university.name }} - {{ settings.site_name }}{% endblock %} {% block content %} {% include 'components/breadcrumb.html' with page_title=university.name page_subtitle=university.city|add:", "|add:university.country %}
{% if university.logo %} {{ university.name }} {% endif %}

{{ university.name }}

{{ university.city }}, {{ university.country }}

{% if university.is_coordinator %} Universite coordinatrice {% endif %}
{{ university.description|safe }}
{% if university.departments.all %}

Departements

{% for dept in university.departments.all %}

{{ dept.name }}

{% if dept.specialization %}

{{ dept.specialization }}

{% endif %} {% if dept.description %}
{{ dept.description|safe }}
{% endif %}
{% endfor %}
{% endif %} {% if team_members %}

Membres de l'equipe

{% endif %}

Informations

{% if university.founded_year %}
Fondee en
{{ university.founded_year }}
{% endif %} {% if university.ranking_position %}
Classement mondial
#{{ university.ranking_position }}
{% endif %} {% for stat in university.statistics.all %}
{{ stat.get_stat_type_display }}
{{ stat.value }}
{% endfor %}

Contact

{% if university.website %} Site web {% endif %} {% if university.email %} {{ university.email }} {% endif %} {% if university.address %}
{{ university.address }}
{% endif %}
{% endblock %}