{% load static %} {% include 'dashboard/gate_keeper_dashboard/header.html' %} {% include 'dashboard/gate_keeper_dashboard/body.html' %}

Dashboard Control panel

{{total_visitors_count}}

Today Appointment

{% comment %} More info {% endcomment %}

{{pending_count}}

Pending Request

{% comment %} More info {% endcomment %}

{{check_in_count}}

Total Check In

{% comment %} More info {% endcomment %}

{{check_out_count}}

Total Check Out

{% comment %} More info {% endcomment %}

Visitor Check In

{% if all_check_in_dtl %} {% for appointment in all_check_in_dtl %} {% endfor %} {% else %} {% endif %}
ID Visitor Name Visitor Mobile Visitor Email Visitor UNI ID Visitor Image Employee Name Check-In Time Meeting status Check-Out Time
{{ appointment.id }} {{ appointment.visitors_name }} {{ appointment.visitors_last_name }} {{ appointment.visitors_mobile }} {{ appointment.visitors_email }} {{ appointment.visitors_uni_id }} {% if appointment.visitors_image %} Visitor Image {% else %} Visitor Image {% endif %} {{ appointment.employee_name }} {{ appointment.employee_last_name }} {{ appointment.start_time }} Meeting in {{ appointment.stop_time }}
No visitors have checked in today.

Visitor Check Out

{% if all_check_out_dtl %} {% for appointment in all_check_out_dtl %} {% endfor %} {% else %} {% endif %}
ID Visitor Name Visitor Mobile Visitor Email Visitor UNI ID Visitor Image Employee Name Check-In Time Meeting status Check-Out Time
{{ appointment.id }} {{ appointment.visitors_name }} {{ appointment.visitors_last_name }} {{ appointment.visitors_mobile }} {{ appointment.visitors_email }} {{ appointment.visitors_uni_id }} {% if appointment.visitors_image %} Visitor Image {% else %} Visitor Image {% endif %} {{ appointment.employee_name }} {{ appointment.employee_last_name }} {{ appointment.start_time }} Meeting out {{ appointment.stop_time }}
No visitors have checked out today.

Visitor Pending

{% if all_pending_list %} {% for appointment in all_pending_list %} {% endfor %} {% else %} {% endif %}
ID Visitor Name Visitor Mobile Visitor Email Visitor UNI ID Visitor Image Employee Name Appointment Status Check-In Time Check-Out Time
{{ appointment.id }} {{ appointment.visitors_name }} {{ appointment.visitors_last_name }} {{ appointment.visitors_mobile }} {{ appointment.visitors_email }} {{ appointment.visitors_uni_id }} {% if appointment.visitors_image %} Visitor Image {% else %} Visitor Image {% endif %} {{ appointment.employee_name }} {{ appointment.employee_last_name }} {{ appointment.status }} {{ appointment.start_time }} {{ appointment.stop_time }}
No pending visitors today.
{% include 'dashboard/visitors_dashboard/footer.html' %}