{% extends "base.html" %} {% block content %}

Biometric – Employee Mapping

View Sync Logs
{% if edit_mapping %} Edit Mapping (ID: {{ edit_mapping.id }}) {% else %} Add New Mapping {% endif %}
{% if edit_mapping %} {% endif %}
Use 'default' unless you separate by machine/site.
{% if edit_mapping %} Cancel edit {% else %} {% endif %}
Existing Mappings ({{ mappings|length }} total)
{% if mappings %} {% for m in mappings %} {% endfor %} {% else %} {% endif %}
# Employee Card Number Source Status Created Actions
{{ loop.index }} {% if m.employee %} {{ m.employee.employee_code }} – {{ m.employee.full_name }} {% else %} [Employee deleted] {% endif %} {{ m.external_code }} {{ m.source_name }} {% if m.is_active %} Active {% else %} Inactive {% endif %} {{ m.created_at }}
No mappings defined yet. Use the form above to create one.
{% endblock %}