{% extends "admin/base_site.html" %} {% load i18n static %} {% block breadcrumbs %}
{% endblock %} {% block content %}| Nom, prénom | Date naiss. | {% if show_option_ase %}Orientation | {% endif %} {% if show_pp %}Récapitulatif des PP | {% endif %} {% if show_employeur %}Employeur | {% endif %} {% for student in students %}
|---|---|---|---|---|
| {{ student }} | {{ student.birth_date }} | {% if show_option_ase %}{{ student.option_ase|default_if_none:'-' }} | {% endif %} {% if show_pp %} {% for train in student.training_set.all %}{{ train.availability.period }} {{ train.availability.corporation }} {% if train.comment %} |
{% endfor %}
{% endif %}
{% if show_employeur %}{{ student.corporation.name }}, {{ student.corporation.city }} | {% endif %}