{% extends "avisstage/base.html" %} {% load staticfiles %} {% block title %}{{ object.sujet }} - ExperiENS{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% if object.auteur == user.profil %}

Modifier cette expérience

{% csrf_token %} {% if object.public %}

Cette page est visible par les autres utilisateurs.

{% else %}

Cette page n'est qu'un brouillon, vous seul pouvez le voir.

{% endif %}
{% endif %}

{{ object.sujet }}

{{ object.date_debut|date:"Y" }}{{ object.date_debut|date:"d/m" }}{{ object.date_fin|date:"d/m" }}

{{ object.auteur.nom }} a fait {{ object.type_stage_fem|yesno:"cette,ce" }} {{ object.type_stage_fancy }} {% if object.niveau_scol %}{{ object.niveau_scol_fancy }},{% endif %} {% if object.structure %}au sein de {{ object.structure }}{% endif %}{% if object.encadrants %}, supervisé par {{ object.encadrants }}{% endif %}.

{% if object.lieux.all %}

Cela s'est passé à : {% for lieu in object.lieux.all %}{{ lieu.nom }} ({{ lieu.ville }}){% if not forloop.last %}, {% endif %}{% endfor %}.

{% endif %}
    {% for matiere in object.matieres.all %}
  • {{ matiere.nom }}
  • {% endfor %} {% for thematique in object.thematiques.all %}
  • {{ thematique.name }}
  • {% endfor %}
{% if object.lieux.all %}
{% endif %}
{% include "avisstage/detail/avis.html" with avis=object.avis_stage titre="Avis sur le travail" auteur=object.auteur.user.username longueur=object.len_avis_stage %} {% for avis in object.avislieu_set.all %} {% include "avisstage/detail/avis.html" with avis=avis titre=avis.lieu auteur=object.auteur.user.username longueur=object.len_avis_lieux %} {% endfor %}
{% endblock %}