⚠️ Unpaid Hours Report

Salesman: {{ salesman_initial }}

{{ start_date }} to {{ end_date }}

Hello,

This report contains all unpaid (unbilled) hours for clients assigned to you ({{ salesman_initial }}).

Total Unpaid Hours

{{ "%.2f"|format(report_data.total_hours) }}

{{ report_data.total_entries }} time entries

⚠️ Action Required: These hours need to be reviewed and billed to clients.

Clients with Unpaid Hours:

{{ report_data.clients|join(', ') }}

Projects with Unpaid Hours:

{{ report_data.projects|join(', ') }}

{% if report_data.entries %}

Time Entry Details

{% for entry in report_data.entries %} {% endfor %}
Date Client Project User Hours Notes
{{ entry.date }} {{ entry.client }} {{ entry.project }} {{ entry.user }} {{ "%.2f"|format(entry.duration) }} {{ entry.notes[:50] }}{% if entry.notes|length > 50 %}...{% endif %}
{% endif %}

Please review these entries and create invoices as needed.

View Reports in TimeTracker