{% extends "base.html" %} {% block title %}{{ _('Overdue Tasks') }} - Time Tracker{% endblock %} {% block content %}
{{ _('There are') }} {{ tasks|length }} {{ _('overdue tasks that require immediate attention.') }} {{ _('Please review and update these tasks to prevent further delays.') }}
{{ task.description[:100] }}{% if task.description|length > 100 %}...{% endif %}
{% endif %} {% if task.estimated_hours and task.total_hours > 0 %}Extend due dates for multiple tasks at once
Adjust priorities for overdue tasks
{{ _('Great job! All tasks are currently on schedule.') }}
{{ _('View All Tasks') }}