{% extends 'dashboard/employee_dashboard/main.html' %} {% load static %} {% block content %}
chart success
Today Appointment

{{total_visitors_count}}

Credit Card
Pending Request

{{pending_count}}

Credit Card
Total Check In

{{check_in_count}}

Credit Card
Total Check Out

{{check_out_count}}

Visitor Pending
{% if all_pending_list %} {% for appointment in all_pending_list %} {% endfor %} {% else %} {% endif %}
ID Name Mobile Email UNI ID Image Employee Name Status Check-In Time Check-Out Time Action
{{ 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.

Visitor Check In
{% if all_check_in_dtl %} {% for appointment in all_check_in_dtl %} {% endfor %} {% else %} {% endif %}
ID Name Mobile Email UNI ID Image Employee Name Check-In Time Meeting status Check-Out Time Action
{{ 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 }} In the Meeting {{ 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 Name Mobile Email UNI ID Image Employee Name Check-In Time Meeting status Check-Out Time Action
{{ 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.
{% endblock %}