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

Complete Time Entry History

Export Data
{% if entries %} {% for entry in entries %} {% endfor %}
Date Project Arrival Departure Work Duration Break Duration Notes Actions
{{ entry.arrival_time.strftime('%Y-%m-%d') }} {% if entry.project %} {{ entry.project.code }} {{ entry.project.name }} {% else %} No project {% endif %} {{ entry.arrival_time.strftime('%H:%M:%S') }} {{ entry.departure_time.strftime('%H:%M:%S') if entry.departure_time else 'Active' }} {{ '%d:%02d:%02d'|format(entry.duration//3600, (entry.duration%3600)//60, entry.duration%60) if entry.duration is not none else 'In progress' }} {{ '%d:%02d:%02d'|format(entry.total_break_duration//3600, (entry.total_break_duration%3600)//60, entry.total_break_duration%60) if entry.total_break_duration is not none else '00:00:00' }} {% if entry.notes %} {{ entry.notes[:50] }}{% if entry.notes|length > 50 %}...{% endif %} {% else %} - {% endif %}
{% else %}

No time entries recorded yet.

{% endif %}
{% endblock %}