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

Time Tracking

{% if active_entry %}

Currently Working

Started at: {{ active_entry.arrival_time|format_datetime }}

00:00:00
{% else %}

Not Currently Working

{% endif %}

Time Entry History

{% for entry in history %} {% endfor %}
Date Arrival Departure Duration Actions
{{ entry.arrival_time|format_date }} {{ entry.arrival_time|format_time }} {{ entry.departure_time|format_time if entry.departure_time else 'Active' }} {{ entry.duration|format_duration if entry.duration else 'N/A' }}
{% endblock %}