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

Time Tracking

{% if active_entry %}

Currently Working

Started at: {{ active_entry.arrival_time.strftime('%Y-%m-%d %H:%M:%S') }}

00:00:00
{% else %}

Not Currently Working

{% endif %}

Time Entry History

{% for entry in history %} {% endfor %}
Date Arrival Departure Duration Actions
{{ entry.arrival_time.strftime('%Y-%m-%d') }} {{ entry.arrival_time.strftime('%H:%M:%S') }} {{ entry.departure_time.strftime('%H:%M:%S') if entry.departure_time else 'Active' }} {{ (entry.duration // 3600)|string + 'h ' + ((entry.duration % 3600) // 60)|string + 'm' if entry.duration else 'N/A' }}
{% endblock %}