{% extends 'base.html' %} {% load static %} {% block title %}Appel a candidature {{ current_call.academic_year|default:"" }} - {{ settings.site_name }}{% endblock %} {% block meta_description %}Appel a candidature pour le programme EUROMA {{ current_call.academic_year|default:"" }}. Consultez les dates, les documents requis et postulez en ligne.{% endblock %} {% block content %} {% include 'components/breadcrumb.html' with page_title="Appel a candidature" page_subtitle=current_call.academic_year %} {% if current_call %}
{% if current_call.status == 'open' %} {% endif %} {{ current_call.get_status_display }} Annee academique {{ current_call.academic_year }}

{{ current_call.title }}

{% if current_call.description %}

{{ current_call.description }}

{% endif %}
{% if current_call.is_open %}

Temps restant

{{ current_call.days_remaining }}

jours

{% if current_call.application_url %} Postuler maintenant {% endif %}
{% elif current_call.status == 'upcoming' %}

Ouverture le

{{ current_call.opening_date|date:"d M Y" }}

Soyez pret!

{% elif current_call.status == 'closed' %}

Candidatures closes

depuis le {{ current_call.deadline_date|date:"d M Y" }}
{% if current_call.results_date %}

Resultats le {{ current_call.results_date|date:"d M Y" }}

{% endif %}
{% elif current_call.status == 'results' %}

Resultats publies

{% endif %}
{% if current_call.places_available %}

{{ current_call.places_available }}

Places disponibles

{% endif %} {% if current_call.scholarships_available %}

{{ current_call.scholarships_available }}

Bourses Erasmus Mundus

{% endif %}

{{ current_call.deadline_date|date:"d M Y" }}

Date limite

{% if current_call.start_date %}

{{ current_call.start_date|date:"M Y" }}

Rentree academique

{% endif %}
{% with timeline_events=current_call.get_timeline_events %} {% if timeline_events %}

Chronogramme

Les etapes cles du processus de candidature pour l'annee academique {{ current_call.academic_year }}

{% for event in timeline_events %}
{{ event.event_date|date:"d M Y" }}

{{ event.title }}

{% if event.description %}

{{ event.description }}

{% endif %} {% if event.is_completed %}

Termine

{% elif event.is_current %}

En cours

{% endif %}
{% endfor %}
{% endif %} {% endwith %} {% if current_call.documents_required %}

Documents requis

Preparez les documents suivants avant de soumettre votre candidature

{% for doc in current_call.get_documents_list %}
{{ doc }}
{% endfor %}
{% endif %} {% if requirements %}

Conditions d'admission

Verifiez que vous remplissez les criteres d'eligibilite avant de postuler

{% for req in requirements %}
{% if req.icon %}
{% endif %}

{{ req.title }}

{{ req.description }}

{% endfor %}
{% endif %} {% if scholarships %}

Bourses disponibles

Plusieurs types de bourses sont disponibles pour les candidats selectionnes

{% for scholarship in scholarships %}

{{ scholarship.name }}

{{ scholarship.description|truncatewords:30 }}

{% if scholarship.amount %}

{{ scholarship.amount|floatformat:0 }} EUR

{% endif %}
{% endfor %}
{% endif %} {% if current_call.additional_info %}

Informations complementaires

{{ current_call.additional_info|linebreaks }}
{% endif %} {% if faqs %}

Questions frequentes

{% for faq in faqs %}

{{ faq.answer }}

{% endfor %}
{% endif %} {% if all_calls|length > 1 %}

Historique des appels

{% for call in all_calls %}
{{ call.academic_year }} {{ call.get_status_display }}
{% endfor %}
{% endif %}
{% if current_call.is_open %}

Pret a postuler?

Ne manquez pas cette opportunite. Les candidatures sont ouvertes jusqu'au {{ current_call.deadline_date|date:"d F Y" }}.

{% if current_call.application_url %} Soumettre ma candidature {% endif %} Guide de candidature
{% else %}

Des questions?

Contactez-nous pour toute information sur le programme et les candidatures.

Nous contacter {% if current_call.application_email %} {{ current_call.application_email }} {% endif %}
{% endif %}
{% else %}

Aucun appel a candidature en cours

Il n'y a pas d'appel a candidature actif pour le moment. Inscrivez-vous a notre newsletter pour etre informe de l'ouverture des prochaines candidatures.

{% endif %} {% endblock %}