Track your work hours efficiently
Select a project and task to begin tracking your work
| Date | Time | Project / Task | Duration | Break | Notes | Actions |
|---|---|---|---|---|---|---|
|
{{ entry.arrival_time.strftime('%d') }}
{{ entry.arrival_time.strftime('%b') }}
|
{{ entry.arrival_time|format_time }}
{{ entry.departure_time|format_time if entry.departure_time else 'Active' }}
|
{% if entry.project %}
{{ entry.project.code }}
{% endif %}
{% if entry.task %}
{{ entry.task.title }}
{% elif entry.project %}
{{ entry.project.name }}
{% else %}
No project
{% endif %}
|
{{ entry.duration|format_duration if entry.duration is not none else 'In progress' }} | {{ entry.total_break_duration|format_duration if entry.total_break_duration else '-' }} | {{ entry.notes[:30] + '...' if entry.notes and entry.notes|length > 30 else entry.notes or '-' }} |
{% if entry.departure_time and not active_entry %}
{% if entry.arrival_time.date() >= today %}
{% else %}
{% endif %}
{% endif %}
|
Start tracking your time to see entries here