{% 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 #}
{{ '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 #}
{{ 'Full Name' | trans }} |
{{ 'Phone' | trans }} |
{{ 'Email' | trans }} |
{{ 'Relation' | trans }} |
{{ 'Active' | trans }} |
{% for guardian in student.getGuardians.toArray %}
{{ guardian.getUsername }} |
{{ guardian.getPhone }} |
{{ guardian.getGuardianEmail }} |
{{ guardian.getGuardianRelation }} |
{% if guardian.getIsActive %}
{{ 'Active' | trans }}
{% else %}
{{ 'InActive' | trans }}
{% endif %}
|
{% endfor %}
{# student attendance report #}
{# Title footer #}
{{ 'Attendance Report' | trans }}
{{ 'Status' | trans }} |
{{ 'Class' | trans }} |
{{ 'Subject' | trans }} |
{{ 'In time' | trans }} |
{{ 'Out time' | trans }} |
{% for at in student.getAttendances.toArray %}
{{ at.getAttendanceStatus.name }} |
{# {{ at.getClassSessionEnrolment.getClassSession.name }} | #}
{# {{ at.getClassSessionEnrolmentSubject.getClassSubject.getSubjectName }} | #}
{{ date_format(at.getDatetimeIn) }} |
{{ date_format(at.getDatetimeOut) }} |
{% endfor %}
{# Exam report #}
{# student attendance report #}
{# Title footer #}
{{ 'Exam Report' | trans }}
{{ 'Class' | trans }} |
{{ 'Subject' | trans }} |
{{ 'Total marks' | trans }} |
{{ 'Passing marks' | trans }} |
{{ 'Marks Gain' | trans }} |
{% for exam in student.getExamsClassesStudents.toArray %}
{{ exam.getExamsClasses.getClass.name }} |
{{ exam.getExamsClasses.getClassSubject.getSubjectName }} |
{{ exam.getExamsClasses.getExamTotalMarks }} |
{{ exam.getExamsClasses.getExamPassingMarks }} |
{{ exam.getEcsGainMarks }} |
{% endfor %}
{% endblock %}
{% block documentation %}
Student Detailed Report?
This Page shows full Detail about the Student, e.g
- Student Basic Information
- Student Guardians
- Student Attendance Report
- Student Exam Report
Info! To Print Student Details Click on the Print Link which is in front of Student Name at the top of page.
{% endblock %}