{% 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

{% if history %} {% for entry in history %} {% endfor %}
Date Arrival Departure Duration
{{ entry.arrival_time.strftime('%Y-%m-%d') }} {{ entry.arrival_time.strftime('%H:%M:%S') }} {{ entry.departure_time.strftime('%H:%M:%S') }} {{ '%d:%02d:%02d'|format(entry.duration//3600, (entry.duration%3600)//60, entry.duration%60) }}
{% else %}

No time entries recorded yet.

{% endif %}
{% endblock %}