{% extends "base.html" %} {% from "components/cards.html" import info_card %} {% block content %}

{{ _('Summary Report') }}

{{ _('Export PDF') }} {{ _('Export to Excel') }}
{{ info_card("Today's Hours", "%.2f"|format(today_hours), "Logged today") }} {{ info_card("Week's Hours", "%.2f"|format(week_hours), "Logged this week") }} {{ info_card("Month's Hours", "%.2f"|format(month_hours), "Logged this month") }}

{{ _('Time by project (last 30 days)') }}

{% if chart_labels_summary and chart_hours_summary %}
{% else %}

{{ _('No project data for the last 30 days.') }}

{% endif %}

{{ _('Daily trend (last 14 days)') }}

{% if trend_dates and trend_hours %}
{% else %}

{{ _('No trend data.') }}

{% endif %}

{{ _('Top Projects (Last 30 Days)') }}

{% for stat in project_stats %} {% else %} {% endfor %}
Project Total Hours
{{ stat.project.name }} {{ "%.2f"|format(stat.hours) }}
{{ _('No project data for the last 30 days.') }}
{% endblock %}