{% extends "base.html.twig" %} {% block BeforeAnyCSSFile %} {% for file in encore_entry_css_files('select2__init') %} {% endfor %} {% endblock %} {% set pagename = 'Student Report' | trans %} {% set addBtnTitle = 'Edit Student' | trans %} {% set addBtnLink = {{ path('users_profile', {'id':student.id | urlencrypt }) }} %} {% block MainContent %} {#Student detail report #} {# Student personal info #}
{# Title footer #}

{{ student.getFullName }} {{ 'Print'|trans }}

{{ 'Full Name' | trans }} {{ student.getFullName }} {{ 'Current Class' | trans }} {{ student.getFullName }} {{ 'Subjects' | trans }} {{ student.getFullName }}
{{ 'Active' | trans }} {% if student.getIsActive %} {{ 'Active' | trans }} {% else %} {{ 'InActive' | trans }} {% endif %} {{ 'Roll Number' | trans }} {{ student.getAdmissionNumber }} {{ 'Gender' | trans }} {% if student.gender == 1 %} {% elseif student.gender == 2 %} {% else %} - {% endif %}
{# Guardian report #}
{# Title footer #}

{{ 'Guardian' | trans }}

{% for guardian in student.getGuardians.toArray %} {% endfor %}
{{ 'Full Name' | trans }} {{ 'Phone' | trans }} {{ 'Email' | trans }} {{ 'Relation' | trans }} {{ 'Active' | trans }}
{{ guardian.getUsername }} {{ guardian.getPhone }} {{ guardian.getGuardianEmail }} {{ guardian.getGuardianRelation }} {% if guardian.getIsActive %} {{ 'Active' | trans }} {% else %} {{ 'InActive' | trans }} {% endif %}
{# student attendance report #}
{# Title footer #}

{{ 'Attendance Report' | trans }}

{% for at in student.getAttendances.toArray %} {# #} {# #} {% endfor %}
{{ 'Status' | trans }} {{ 'Class' | trans }} {{ 'Subject' | trans }} {{ 'In time' | trans }} {{ 'Out time' | trans }}
{{ at.getAttendanceStatus.name }} {{ at.getClassSessionEnrolment.getClassSession.name }} {{ at.getClassSessionEnrolmentSubject.getClassSubject.getSubjectName }} {{ date_format(at.getDatetimeIn) }} {{ date_format(at.getDatetimeOut) }}
{# Exam report #} {# student attendance report #}
{# Title footer #}

{{ 'Exam Report' | trans }}

{% for exam in student.getExamsClassesStudents.toArray %} {% endfor %}
{{ 'Class' | trans }} {{ 'Subject' | trans }} {{ 'Total marks' | trans }} {{ 'Passing marks' | trans }} {{ 'Marks Gain' | trans }}
{{ exam.getExamsClasses.getClass.name }} {{ exam.getExamsClasses.getClassSubject.getSubjectName }} {{ exam.getExamsClasses.getExamTotalMarks }} {{ exam.getExamsClasses.getExamPassingMarks }} {{ exam.getEcsGainMarks }}
{% endblock %} {% block documentation %}
Student Detailed Report?

This Page shows full Detail about the Student, e.g

Info! To Print Student Details Click on the Print Link which is in front of Student Name at the top of page.

{% endblock %}