{% extends 'school/base_school.html' %} {% block title %}Dashboard | STD Lab{% endblock %} {% block page_title %}Today's Overview{% endblock %} {% block content %}
{% if school.is_time_test_enabled %}

Time Sync Engine

{% if is_time_test_active %}DEACTIVATE TEST{% else %}ACTIVATE TEST{% endif %}
{{ current_system_time|date:"h:i:s A" }}
{{ current_system_time|date:"l, d M Y" }}
{% if is_time_test_active %} {% endif %}
{% else %}

System Time

{{ current_system_time|date:"h:i:s A" }}
{{ current_system_time|date:"l, d M Y" }}
{% endif %}

Global Localization

LIVE SYNC
{{ school.location_name|default:"Detecting..." }}
{{ school.timezone_name }}

{{ student_count }}

STUDENTS

{{ logs.count }}

LOGS TODAY

{{ device_count }}

DEVICES

{{ school.classes.count }}

CLASSES

Recent Attendance Activity

LIVE OVERVIEW
{% for log in logs|slice:":10" %} {% empty %} {% endfor %}
StudentRollClassTime
{{ log.student.name }}
ID: {{ log.student.pin }}
{{ log.student.roll }} {{ log.student.student_class.name }} {{ log.timestamp|date:"h:i A" }}
No records found for today.
{% if is_subscription_expired %}

Subscription Expired

Please contact support to renew.

Logout
{% endif %} {% if pending_announcements and not is_subscription_expired %}
SYSTEM ANNOUNCEMENT
{% for ann in pending_announcements %}{{ ann.message|linebreaksbr }}{% endfor %}
{% endif %} {% endblock %}