{% extends "base.html.twig" %} {% block BeforeAnyCSSFile %} {% endblock %} {% block ExtraCSSFiles %} {% endblock %} {% block pageLabel %} {% endblock %} {% block recordLength %} {% endblock %} {% block MainContent %}

{{ 'Childrens'|trans }}

{% for student in app.user.getStudentReference.toArray %} {% endfor %}
{{ 'Name'|trans }} {{ 'Class Enrollment'|trans }} {{ 'Active'|trans }} {{ 'Gender'|trans }} {{ '#'|trans }}
{{ student.fullName }} {% for studentEnrollment in student.getClassSessionEnrolments.toArray %} {{ studentEnrollment.getClassSession.getName }}
{% endfor %}
{% if student.getIsActive() %} {{ 'Active' | trans }} {% else %} {{ 'InActive' | trans }} {% endif %} {% if student.gender == 1 %} {% elseif student.gender == 2 %} {% else %} - {% endif %}
{% endblock %} {% block ExtraJsFIles %} {% endblock %}