{% extends 'base.html' %} {% block title %}Contact - {{ settings.site_name }}{% endblock %} {% block content %} {% include 'components/breadcrumb.html' with page_title="Contact" page_subtitle="Nous sommes a votre ecoute" %}

Envoyez-nous un message

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}
{{ form.first_name }} {% if form.first_name.errors %}

{{ form.first_name.errors.0 }}

{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}

{{ form.last_name.errors.0 }}

{% endif %}
{{ form.email }} {% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}
{{ form.phone }}
{{ form.subject_category }}
{{ form.subject }} {% if form.subject.errors %}

{{ form.subject.errors.0 }}

{% endif %}
{{ form.message }} {% if form.message.errors %}

{{ form.message.errors.0 }}

{% endif %}

Informations de contact

{% for info in contact_infos %}

{{ info.department_name }}

{{ info.email }} {% if info.phone %} {{ info.phone }} {% endif %}
{% empty %} {% endfor %}
{% if universities %}

Contacts par universite

{% for uni in universities %}

{{ uni.name }}

{% for contact in uni.contacts.all|slice:":1" %}

{{ contact.contact_person }}

{{ contact.email }} {% empty %} {% if uni.email %} {{ uni.email }} {% endif %} {% endfor %}
{% endfor %}
{% endif %}
{% endblock %}