From 63b0fc6269b38edf7234b9f151b80d81f614c0a3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 4 Aug 2015 10:11:24 +0300 Subject: Initial commit First public commit --- servo/templates/stats/locations.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 servo/templates/stats/locations.html (limited to 'servo/templates/stats/locations.html') diff --git a/servo/templates/stats/locations.html b/servo/templates/stats/locations.html new file mode 100755 index 0000000..576da8b --- /dev/null +++ b/servo/templates/stats/locations.html @@ -0,0 +1,33 @@ +{% 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 %} -- cgit v1.2.3