{% extends "turkle/base.html" %} {% load static %} {% block head %} {% endblock %} {% block body %}

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 }}

{% for project in project_stats %} {% for batch in project.batch_stats %} {% endfor %} {% endfor %}
# Tasks (Project) # Tasks (Batch) Elapsed Time (Project) Elapsed Time (Batch)
PROJECT: {{ project.project_name }} {{ project.total_completed_project }} {{ project.elapsed_time_project }}
BATCH: {{ batch.batch_name }} {{ batch.total_completed_batch }} {{ batch.elapsed_time_batch }}

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 %}