{% extends "base_page.html" %} {% block title %}{{ employee_name }} - {{ log_date }} Details{% endblock %} {% block page_title %}{{ employee_name }} - {{ log_date }} Entry/Exit Details{% endblock %} {% block content %}
Back
{{ employee_name }} {{ target_date.strftime('%A, %d %B %Y') }}
First Entry

{{ summary.first_in }}

Last Exit

{% if summary.is_currently_inside %} Still Inside {% else %} {{ summary.last_out }} {% endif %}

Total Inside

{{ summary.total_inside }}

Total Outside

{{ summary.total_outside }}

Entry/Exit Timeline {{ transactions|length }} Movements
{% if transactions %}
{% for transaction in transactions %}
{{ transaction.direction_display }}
{{ transaction.time_display }}

Door: {{ transaction.reader_name }}

{{ transaction.time.strftime('%d.%m.%Y %H:%M:%S') }}

{% endfor %}
{% else %}
No movement records found for this date

No entry/exit records found for {{ employee_name }} on {{ log_date }}.

{% endif %}
{% endblock %}