{% 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 %}
{# Search filter head #}

{{ 'Daily Attendnace'|trans }} {# dropdown #}

{# filters #} {# {{ app.request.query.get('date') is empty ? 'collapse' }} #}
{# Class based#}
{# Attendance Status #}
{# Mark attendance of the date of #}
  {{ 'Print' | trans }}   {{ 'Clear' | trans }}
{# Body #}
{% for attendance in attendances %} {% if isInstanceof(attendance,'attendance') %} {% endif %} {% endfor %}
{{ '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 }}
{% endblock %} {% block ExtraJsFIles %} {% for file in encore_entry_js_files('attendance') %} {% endfor %} {% for file in encore_entry_js_files('datePicker__init') %} {% endfor %} {% endblock %} {% block documentation %}
Student Attendance?

A1. See Fig, To Check Flow
  • Step 1 is about to add {{ 'Attendance satuts'|trans }} Complete Step 1
  • Step 2 is about to enable {{ 'Attendance satuts'|trans }} from Settings Complete Step 2, Go to the Setting Page & then Go to {{ 'Attendance Setting' | trans }} Tab
  • Step 3 is about Mark {{ 'Attendance'|trans }}Complete Step 3

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.

How to Mark Attendance Of Class?

To Mark Class Attendance Click over the Mark Attendance button, which is in the Top head, behind the Documentation button

{% endblock %}