{% extends "base.html" %} {% from "components/client_select.html" import client_select %} {% block content %}
{{ _('Loading...') }}
| {{ _('Client') }} | {{ _('Total Hours') }} | {{ _('Estimated Amount') }} | {{ _('Projects') }} | |
|---|---|---|---|---|
|
{{ data.client.name }}
{% if data.client.email %}
{{ data.client.email }}
{% endif %}
|
{{ "%.2f"|format(data.total_hours) }} {{ _('hours') }} | {{ "%.2f"|format(data.estimated_amount) }} |
{% for project in data.projects %}
{{ project.project.name }}
: {{ "%.2f"|format(project.hours) }}h
{% if project.rate > 0 %}
@ {{ "%.2f"|format(project.rate) }}/h
{% endif %}
{% endfor %}
|
{{ _('No unpaid hours found for the selected period.') }}