{% extends "base.html.twig" %} {% block BeforeAnyCSSFile %} {% for file in encore_entry_css_files('select2__init') %} {% endfor %} {% for file in encore_entry_css_files('dateRangepicker__init') %} {% endfor %} {% endblock %} {% set pagename = 'Daily Attendance Report' | trans %} {% set addBtnTitle = 'Mark Attendance?' | trans %} {% set addBtnLink = path('add_attendance') %} {% block showHeaderMenuButtons %}
{% endblock %} {% block MainContent %}{{ 'Student Name'|trans }} | {{ 'Attendance Status'|trans }} |
---|---|
{{ attendance.user is not empty ? attendance.user.fullname }} | {% if attendance.getAttendanceStatustype %} {% set ClassName = 'success' %} {% else %} {% set ClassName = 'danger' %} {% endif %} {{ attendance.getAttendanceStatus is not empty ? attendance.getAttendanceStatus.name }} |
This page help to Show Daily Attendance of Student, At the bottom of the Page, there is a table which is divided into tow columns
To Filter Attendance of Specific Class you Can Select Class from the Classes Dropdown, Attendance Status & Date
To Print out the Student Attendance, You've to Click on the Print button, after search.
To Mark Class Attendance Click over the Mark Attendance button, which is in the Top head, behind the Documentation button
{% endblock %}