diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-08-04 10:11:24 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-08-04 10:11:24 +0300 |
commit | 63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch) | |
tree | 555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/stats/locations.html | |
download | Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2 Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip |
Initial commit
First public commit
Diffstat (limited to 'servo/templates/stats/locations.html')
-rwxr-xr-x | servo/templates/stats/locations.html | 33 |
1 files changed, 33 insertions, 0 deletions
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 %} + <li><a href="{% url 'stats-index' %}">{% trans "Technicians" %}</a></li> + <li class="active"><a href="{% url 'stats-index' %}">{% trans "Locations" %}</a></li> + <li><a href="{% url 'stats-queues' %}">{% trans "Queues" %}</a></li> + <li><a href="{% url 'stats-repairs' %}">{% trans "Repairs" %}</a></li> + <li><a href="{% url 'stats-statuses' %}">{% trans "Statuses" %}</a></li> + <li><a href="{% url 'stats-sales' %}">{% trans "Sales" %}</a></li> +{% endblock tabs %} + +{% block stats %} + <h2>{% trans "Orders Created" %}</h2> + <p>{% trans "Shows you how many orders are created at each location." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/created/location/" %} + <hr/> + <h2>{% trans "Orders Closed" %}</h2> + <p>{% trans "Shows you how many orders have been closed at each location." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/closed/location/" %} + <hr/> + <h2>{% trans "Average Turnaround" %}</h2> + <p>{% trans "Shows how many hours it takes to complete an order at each location." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/turnaround/location/" %} + <hr/> + <h2>{% trans "Average Runrate" %}</h2> + <p>{% trans "Shows you how many orders people are working on at each location." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/runrate/location/" %} + <hr/> + <h2>{% trans "Work Distribution" %}</h2> + <p>{% trans "This shows you how your overall work load is distributed across your service locations." %}</p> + <div class="plot plot-pie pull-left" data-source="/stats/data/distribution/location/"></div> +{% endblock stats %} |