Statistics for {{ full_name }}
Total Task Assignments: {{ total_completed }}
{% if not start_date and not end_date %}
(All time)
{% else %}
({% if start_date %}{{ start_date }}{% endif %} - {% if end_date %}{{ end_date }}{% endif %})
{% endif %}
Total Elapsed Time: {{ total_elapsed_time }}
|
# Tasks (Project) |
# Tasks (Batch) |
Elapsed Time (Project) |
Elapsed Time (Batch) |
{% for project in project_stats %}
PROJECT: {{ project.project_name }}
|
{{ project.total_completed_project }}
|
|
{{ project.elapsed_time_project }}
|
|
{% for batch in project.batch_stats %}
BATCH: {{ batch.batch_name }}
|
|
{{ batch.total_completed_batch }}
|
|
{{ batch.elapsed_time_batch }}
|
{% endfor %}
{% endfor %}
Elapsed Time is the time between when you Accept a Task
Assignment and when you Submit that Task Assignment. Elapsed Time
is not the same thing as "time worked". If you Accept a Task
Assignment, leave for lunch, and then Submit the task after lunch,
the amount of Elapsed Time will be longer than the amount of time
you spent working on the Task.
{% endblock %}