{% extends "default.html" %} {% load i18n %} {% block content %}
{% block filter_block %}
{% for field in form %}
{{ field }}
{% endfor %}
{% endblock filter_block %}
{% block stats %} {% for r in results %} {% endfor %} {% if totals.turnaround.nonzero %} {% endif %}
{% trans "Technician" %} {% trans "Cases Created" %} {% trans "Cases Assigned" %} {% trans "Repairs Created" %} {% trans "Cases Dispatched" %}
{{ r.name }} {{ r.created }} {{ r.assigned }} {{ r.repairs }} {{ r.dispatched }}
{% trans "Total" %} {{ totals.created }} {{ totals.assigned }} {{ totals.repairs }} {{ totals.dispatched }} {{ totals.diff }}
{% trans "Average turnaround time" %} {{ totals.turnaround.days }} {% trans "days" %}, {{ totals.turnaround.hours }} {% trans "hours" %}
{% endblock stats %}
{% endblock content %} {% block crumbs %}
  • {% trans "Statistics" %}
  • {% endblock crumbs %}