{% 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 "Shows you how many orders are created at each location." %}

    {% include "stats/plot_snippet.html" with url="/stats/data/created/location/" %}

    {% trans "Orders Closed" %}

    {% trans "Shows you how many orders have been closed at each location." %}

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

    {% trans "Average Turnaround" %}

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

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

    {% trans "Average Runrate" %}

    {% trans "Shows you how many orders people are working on at each location." %}

    {% include "stats/plot_snippet.html" with url="/stats/data/runrate/location/" %}

    {% trans "Work Distribution" %}

    {% trans "This shows you how your overall work load is distributed across your service locations." %}

    {% endblock stats %}