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/statuses.html | |
download | Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2 Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip |
Initial commit
First public commit
Diffstat (limited to 'servo/templates/stats/statuses.html')
-rwxr-xr-x | servo/templates/stats/statuses.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/servo/templates/stats/statuses.html b/servo/templates/stats/statuses.html new file mode 100755 index 0000000..f4fb427 --- /dev/null +++ b/servo/templates/stats/statuses.html @@ -0,0 +1,21 @@ +{% extends "stats/index.html" %} +{% load i18n %} + +{% block tabs %} + <li><a href="{% url 'stats-index' %}">{% trans "Technicians" %}</a></li> + <li><a href="{% url 'stats-locations' %}">{% 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 class="active"><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 per location" %}</h2> + <p>{% trans "Shows the number of orders with a particular status at the selected location that have been assigned to a technician over the specified time period." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/status/location/" %} + <hr/> + <h2>{% trans "Orders per user" %}</h2> + <p>{% trans "Shows the number of orders with a particular status per each user at the given location that have been assigned to a technician over the specified time period." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/status/tech/" %} +{% endblock stats %} |