{% extends 'layout/frontEndLayout.html.twig' %} {% block name %} Classrooms of Bethesda {% endblock %} {% block body %}

Liste des classes et resultats aux examens officiels 2022-2023


{% if rooms|length > 0 %}
{% for row in rooms|batch(4) %}
{% for room in row %}
{% if room.id in mainTeachersMap|keys %} {% else %} {% endif %}
{% if room.apc %} {% set success = 0 %} {% set candidats = 0 %}
    {% for subscription in subscriptions %} {% if(subscription.classRoom.id == room.id) %} {% set candidats = candidats + 1 %} {% if subscription.officialExamResult != "0" %} {% set success = success + 1 %} {% endif %}
  • {{ subscription.student.lastname }}
    {{subscription.student.lastname|title ~ subscription.student.firstname|title}}
    {{subscription.verbalOfficialExamResult|lower}}
  • {% endif %} {% endfor %}
{{ (100 * success / candidats)|round(2, 'floor') ~ "%"}} {# {% if success == candidats %} {% else %} {% endif %}#}
{% endif %}
  • {{ pluralize(room.modules|length, 'Module' , 'Modules') }}
{% endfor %}
{% endfor %} {% else %}

No classroom yet. {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %} Be the first! {% endif %}

{% endif %}
{% endblock %}