{% extends "base_authenticated.html" %} {% block title %}Verification Review - QR Code Management{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Verification Photo Review

Review and approve/reject employee verification photo for off-site check-in

{% if record.verification_status != 'pending' %}
This verification has already been {{ record.verification_status }}.
{% endif %}

Employee Information

Employee ID {{ record.employee_id }}
Employee Name {{ employee_name or 'Unknown' }}
Check-in Date {{ check_in_date }}
Check-in Time {{ check_in_time }}
Status {{ record.verification_status.upper() }}

Location Information

Location Name {{ record.location_name or 'Unknown' }}
Event {{ location_event or 'N/A' }}
Distance from QR {% if record.location_accuracy %} {% if record.location_accuracy > 0.5 %} {{ "%.3f"|format(record.location_accuracy) }} miles {% elif record.location_accuracy > 0.2 %} {{ "%.3f"|format(record.location_accuracy) }} miles {% else %} {{ "%.3f"|format(record.location_accuracy) }} miles {% endif %} {% else %} N/A {% endif %}
QR Address {{ qr_code.address if qr_code else 'N/A' }}
Check-in Address {{ record.address or 'N/A' }}
Device {{ record.device_info or 'Unknown' }}

Verification Photo

{% if record.verification_photo %} Verification Photo for {{ record.employee_id }} {% else %}

No Photo Available

This record does not have a verification photo.

{% endif %}
{% if record.verification_status == 'pending' %}
Back to Attendance
{% else %}
Back to Attendance
{% endif %}
{% endblock %}