{% extends "base.html" %} {% block content %}
| Task | Project | Status | Completed At | Hours |
|---|---|---|---|---|
| {{ task_row.task.name }} | {{ task_row.project.name }} | {{ task_row.status.replace('_', ' ').title() }} | {% if task_row.completed_at %} {{ task_row.completed_at|user_date }} {% else %} - {% endif %} | {{ "%.2f"|format(task_row.hours) }} |
|
{{ _('No tasks with logged time for the selected period.') }} {{ _('Try a different date range or log time on tasks.') }} |
||||