{% extends "stats/index.html" %} {% load i18n %} {% block tabs %}
  • {% trans "Technicians" %}
  • {% trans "Locations" %}
  • {% trans "Queues" %}
  • {% trans "Repairs" %}
  • {% trans "Statuses" %}
  • {% trans "Sales" %}
  • {% endblock tabs %} {% block stats %}

    {% trans "Orders Created" %}

    {% trans "This is your total number of orders per queue in the specified time period" %}

    {% include "stats/plot_snippet.html" with url="/stats/data/orders/count/" %}

    {% trans "Orders Closed" %}

    {% trans "Shows you how many orders have been closed in each queue." %}

    {% include "stats/plot_snippet.html" with url="/stats/data/closed/queue/" %}

    {% trans "Average Turnaround" %}

    {% trans "Shows how many hours it takes to complete an order in each queue." %}

    {% include "stats/plot_snippet.html" with url="/stats/data/orders/turnaround/" %}

    {% trans "Work Distribution" %}

    {% trans "This shows your total ratio of orders over the time period distributed over each queue." %}

    {% endblock stats %}