{% extends "base.html.twig" %} {% set pagename = 'Attendance Status' | trans %} {% set addBtnTitle = 'Add New Status' | trans %} {% set addBtnLink = path('add_attendance_status') %} {% block MainContent %}

{{ 'Attendance satuts'|trans }}

{% for key,value in attendance_status___list %} {% endfor %}
{{ 'Status name'|trans }} {{ 'Description'|trans }} {{ 'Status type'|trans }} {{ 'Enable?'|trans }} {{ 'Action'|trans }}
{{ value.name }} {{ value.description }} {% if value.type %} {{ 'Present' | trans }} {% else %} {{ 'Absent' | trans }} {% endif %} {% if value.getEnable %} {{ 'Active' | trans }} {% else %} {{ 'InActive' | trans }} {% endif %}
{% endblock %} {% block ExtraJsFIles %} {% for file in encore_entry_js_files('attendance') %} {% endfor %} {% endblock %} {% block documentation %}
Attendance Status?

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

Attendance Status are , Present, Absent, Sick Leave and other, these status are totally customized able & can define by yourself.
Here we will show the list of Attendance Status.

How to Add Attendance Status?

To Add Attendance Status Click on the {{ 'Add Attendance Status'|trans }} button which is behind the Documentation button

Important! To Make Attendance Status enabled you need to follow this step

If your App Setting , Attendance Setting Tab, is not showing {{ 'Visisble attendance status'|trans }} Dropdown, then Please click on the link {{ 'Add Attendance status' | trans }} & system will redirect to the new page, where you can add the Attendance Status See Fig
Add new Status & Go back to the Settings Page and select the Attendance Status & you will able to Mark Attendance of Student.

{% endblock %}