{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav, button, filter_badge %} {% block title %}{{ _('Weekly Time Goals') }} - {{ config.APP_NAME }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': _('Weekly Goals')} ] %} {{ page_header( icon_class='fas fa-bullseye', title_text=_('Weekly Time Goals'), subtitle_text=_('Set and track your weekly hour targets'), breadcrumbs=breadcrumbs, actions_html='' + _('New Goal') + '' ) }}
{{ _('Total Goals') }}
{{ stats.total_goals }}
{{ _('Completed') }}
{{ stats.completed }}
{{ _('Failed') }}
{{ stats.failed }}
{{ _('Success Rate') }}
{{ stats.completion_rate }}%
{{ _('Week') }}
{{ current_goal.week_label }}
{{ _('Target Hours') }}
{{ current_goal.target_hours }}h
{{ _('Actual Hours') }}
{{ current_goal.actual_hours }}h
{{ _('Remaining Hours') }}
{{ current_goal.remaining_hours }}h
{{ _('Days Remaining') }}
{{ current_goal.days_remaining }}
{{ _('Avg Hours/Day Needed') }}
{{ current_goal.average_hours_per_day }}h
{{ _('Create a weekly time goal to start tracking your progress') }}
{{ _('Create Goal') }}{{ _('Target') }}: {{ goal.target_hours }}h | {{ _('Actual') }}: {{ goal.actual_hours }}h