{% load static %}
{% include 'dashboard/employee_dashboard/header.html' %}
{% include 'dashboard/employee_dashboard/body.html' %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{{total_visitors_count}}
Today Appointment
{% comment %} {% endcomment %}
{{pending_count}}
Pending Request
{% comment %} {% endcomment %}
{{check_in_count}}
Total Check In
{% comment %} {% endcomment %}
{{check_out_count}}
Total Check Out
{% comment %} {% endcomment %}
ID |
Visitor Name |
Visitor Mobile |
Visitor Email |
Visitor UNI ID |
Visitor Image |
Employee Name |
Check-In Time |
Meeting status |
Check-Out Time |
Action |
{% if all_check_in_dtl %}
{% for appointment in all_check_in_dtl %}
{{ appointment.id }} |
{{ appointment.visitors_name }} {{ appointment.visitors_last_name }} |
{{ appointment.visitors_mobile }} |
{{ appointment.visitors_email }} |
{{ appointment.visitors_uni_id }} |
{% if appointment.visitors_image %}
{% else %}
{% endif %}
|
{{ appointment.employee_name }} {{ appointment.employee_last_name }} |
{{ appointment.start_time }} |
In the Meeting |
{{ appointment.stop_time }} |
|
{% endfor %}
{% else %}
No visitors have checked in today. |
{% endif %}
ID |
Visitor Name |
Visitor Mobile |
Visitor Email |
Visitor UNI ID |
Visitor Image |
Employee Name |
Check-In Time |
Meeting status |
Check-Out Time |
Action |
{% if all_check_out_dtl %}
{% for appointment in all_check_out_dtl %}
{{ appointment.id }} |
{{ appointment.visitors_name }} {{ appointment.visitors_last_name }} |
{{ appointment.visitors_mobile }} |
{{ appointment.visitors_email }} |
{{ appointment.visitors_uni_id }} |
{% if appointment.visitors_image %}
{% else %}
{% endif %}
|
{{ appointment.employee_name }} {{ appointment.employee_last_name }} |
{{ appointment.start_time }} |
Meeting out |
{{ appointment.stop_time }} |
|
{% endfor %}
{% else %}
No visitors have checked out today. |
{% endif %}
ID |
Visitor Name |
Visitor Mobile |
Visitor Email |
Visitor UNI ID |
Visitor Image |
Employee Name |
Appointment Status |
Check-In Time |
Check-Out Time |
Action |
{% if all_pending_list %}
{% for appointment in all_pending_list %}
{{ appointment.id }} |
{{ appointment.visitors_name }} {{ appointment.visitors_last_name }} |
{{ appointment.visitors_mobile }} |
{{ appointment.visitors_email }} |
{{ appointment.visitors_uni_id }} |
{% if appointment.visitors_image %}
{% else %}
{% endif %}
|
{{ appointment.employee_name }} {{ appointment.employee_last_name }} |
{{ appointment.status }} |
{{ appointment.start_time }} |
{{ appointment.stop_time }} |
|
{% endfor %}
{% else %}
No pending visitors today. |
{% endif %}
{% include 'dashboard/visitors_dashboard/footer.html' %}