{% extends "base.html" %} {% from "components/cards.html" import info_card %} {% from "components/ui.html" import page_header, breadcrumb_nav, button, filter_badge %} {% block content %} {% set breadcrumbs = [ {'text': _('Reports')} ] %} {{ page_header( icon_class='fas fa-chart-bar', title_text=_('Reports'), subtitle_text=_('View comprehensive reports and analytics for your time tracking data'), breadcrumbs=breadcrumbs, actions_html=None ) }} {% if current_user.is_authenticated and current_user.ui_show_donate and not is_license_activated %}

{{ _('Enjoying TimeTracker?') }} {{ _('Support development or get a supporter license — the app stays free for everyone.') }}

{% endif %}
{{ info_card(_("Total Hours"), "%.2f"|format(summary.total_hours), _("All time")) }} {{ info_card(_("Billable Hours"), "%.2f"|format(summary.billable_hours), _("All time")) }} {{ info_card(_("Active Projects"), summary.active_projects, _("Currently active")) }} {{ info_card(_("Active Users"), summary.total_users, _("Currently active")) }}
{{ currency|currency_symbol }}{{ "%.2f"|format(summary.total_payments) }}
{{ _('Total Payments') }}
{{ _('Last 30 days') }}
{{ summary.payment_count }}
{{ _('Payments Received') }}
{{ _('Last 30 days') }}
{{ currency|currency_symbol }}{{ "%.2f"|format(summary.payment_fees) }}
{{ _('Gateway Fees') }}
{{ _('Last 30 days') }}
{{ currency|currency_symbol }}{{ "%.2f"|format(summary.total_payments - summary.payment_fees) }}
{{ _('Net Received') }}
{{ _('After fees') }}

{{ _('Date Range & Comparison') }}

{{ _('Quick Date Ranges') }}

{{ _('Comparison View') }}

{{ _('Week in Review') }}
{{ _('This week\'s hours, top projects, billable vs non-billable') }}

{{ _('Export Reports') }}

{{ _('Export Format') }}

{{ _('Scheduled Reports') }}

Set up automatic report generation

{{ _('Report Types') }}

{{ _('Project Report') }} {{ _('User Report') }} {{ _('Summary Report') }} {{ _('Task Report') }} {{ _('Time Entries Report') }} {{ _('Unpaid Hours Report') }} {{ _('Report Builder') }}

{{ _('Report Management') }}

{{ _('Saved Report Views') }}

{{ _('View and manage your saved report configurations') }}

{{ _('Scheduled Reports') }}

{{ _('Manage automated report delivery via email') }}

{{ _('Recent Entries') }}

{% for entry in recent_entries %} {% else %} {% endfor %}
{{ _('Project') }} {{ _('Duration') }} {{ _('Date') }}
{{ entry.project.name }} {{ entry.duration }} {{ entry.start_time|user_date }}

{{ _('No recent entries.') }}

{{ _('Start tracking time to see entries here.') }}

{{ _('Log Time') }}
{% endblock %} {% block scripts_extra %} {% endblock %}