{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav %} {% block content %} {% set breadcrumbs = [ {'text': _('Reports'), 'url': url_for('reports.reports')}, {'text': _('Week in Review')} ] %} {{ page_header( icon_class='fas fa-calendar-week', title_text=_('Week in Review'), subtitle_text=_('This week\'s time summary and top projects'), breadcrumbs=breadcrumbs, actions_html=None ) }}

{{ _('Back to Reports') }}

{{ _('Week') }} {{ week_start }} – {{ week_end }}

{{ "%.1f"|format(total_hours) }}h
{{ _('Total hours') }}
{{ "%.1f"|format(billable_hours) }}h
{{ _('Billable') }}
{{ "%.1f"|format(non_billable_hours) }}h
{{ _('Non-billable') }}

{{ _('%(count)s time entries logged this week.', count=entry_count) }}

{{ _('Top projects this week') }}

{% if top_projects %} {% else %}

{{ _('No time logged this week yet.') }}

{% endif %}
{% endblock %}