diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-03-21 19:14:11 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-03-21 19:14:11 +0200 |
commit | f30d6d73513a5535cae4d97ee2cc85f01660750c (patch) | |
tree | 4536e266855a08965b6acef0fd4f90d7c23659a2 /servo/templates/stats | |
parent | 367aba3c306a49cb8f8e16b34625f51396e3aacf (diff) | |
download | Servo-f30d6d73513a5535cae4d97ee2cc85f01660750c.tar.gz Servo-f30d6d73513a5535cae4d97ee2cc85f01660750c.tar.bz2 Servo-f30d6d73513a5535cae4d97ee2cc85f01660750c.zip |
Adding device stats
Diffstat (limited to 'servo/templates/stats')
-rw-r--r-- | servo/templates/stats/devices.html | 40 | ||||
-rwxr-xr-x | servo/templates/stats/index.html | 1 | ||||
-rwxr-xr-x | servo/templates/stats/locations.html | 1 | ||||
-rw-r--r-- | servo/templates/stats/newstats.html | 1 | ||||
-rwxr-xr-x | servo/templates/stats/queues.html | 1 | ||||
-rwxr-xr-x | servo/templates/stats/sales.html | 49 | ||||
-rwxr-xr-x | servo/templates/stats/statuses.html | 1 |
7 files changed, 70 insertions, 24 deletions
diff --git a/servo/templates/stats/devices.html b/servo/templates/stats/devices.html new file mode 100644 index 0000000..079530a --- /dev/null +++ b/servo/templates/stats/devices.html @@ -0,0 +1,40 @@ +{% 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><a href="{% url 'stats-statuses' %}">{% trans "Statuses" %}</a></li> + <li><a href="{% url 'stats-sales' %}">{% trans "Sales" %}</a></li> + <li class="active"><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> +{% endblock tabs %} + +{% block stats %} + <h2>{% trans "Device statistics" %}</h2> + <p>{% trans "Shows the number of orders and GSX repairs created for each device model within the given timeframe." %}</p> + <hr/> + <table class="table sortable"> + <thead> + <tr> + <th>{% trans "Device" %}</th> + <th>{% trans "Service Orders" %}</th> + <th>{% trans "GSX Repairs" %}</th> + </tr> + </thead> + <tbody> + {% for r in results %} + <tr> + <td>{{ r.0 }}</td> + <td>{{ r.1 }}</td> + <td>{{ r.2 }}</td> + </tr> + {% empty %} + <tr> + <td colspan="3" class="empty muted">{% trans "No results found" %}</td> + </tr> + {% endfor %} + </tbody> + </table> +{% endblock stats %} diff --git a/servo/templates/stats/index.html b/servo/templates/stats/index.html index 2edc57d..90c0ed9 100755 --- a/servo/templates/stats/index.html +++ b/servo/templates/stats/index.html @@ -11,6 +11,7 @@ <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> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} </ul> diff --git a/servo/templates/stats/locations.html b/servo/templates/stats/locations.html index 576da8b..da4545e 100755 --- a/servo/templates/stats/locations.html +++ b/servo/templates/stats/locations.html @@ -8,6 +8,7 @@ <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> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} {% block stats %} diff --git a/servo/templates/stats/newstats.html b/servo/templates/stats/newstats.html index 1900efc..325ab10 100644 --- a/servo/templates/stats/newstats.html +++ b/servo/templates/stats/newstats.html @@ -11,6 +11,7 @@ <li class="active"><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> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} </ul> diff --git a/servo/templates/stats/queues.html b/servo/templates/stats/queues.html index eefec46..f4f493d 100755 --- a/servo/templates/stats/queues.html +++ b/servo/templates/stats/queues.html @@ -8,6 +8,7 @@ <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> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} {% block stats %} diff --git a/servo/templates/stats/sales.html b/servo/templates/stats/sales.html index 186e897..e58b7b4 100755 --- a/servo/templates/stats/sales.html +++ b/servo/templates/stats/sales.html @@ -2,32 +2,33 @@ {% 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><a href="{% url 'stats-statuses' %}">{% trans "Statuses" %}</a></li> -<li class="active"><a href="{% url 'stats-sales' %}">{% trans "Sales" %}</a></li> + <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><a href="{% url 'stats-statuses' %}">{% trans "Statuses" %}</a></li> + <li class="active"><a href="{% url 'stats-sales' %}">{% trans "Sales" %}</a></li> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} {% block stats %} -<h2>{% trans "Sales" %}</h2> -<p>{% trans "Shows you invoice totals per queue within the selected time period." %}</p> -{% include "stats/plot_snippet.html" with url="/stats/data/sales/invoices/" %} -<hr/> -<h2>{% trans "Purchases" %}</h2> -<p>{% trans "Shows you Purchase Order totals per queue within the selected time period." %}</p> -{% include "stats/plot_snippet.html" with url="/stats/data/sales/purchases/" %} -<hr/> -<h2>{% trans "Service Parts" %}</h2> -<p>{% trans "Shows you how many parts have been ordered for each labour tier." %}</p> -<div class="row-fluid"> - <div class="span12"> - <div class="span10"> - <div class="plot plot-bar" data-source="/stats/data/sales/parts/"></div> - <div class="legend-container"></div> + <h2>{% trans "Sales" %}</h2> + <p>{% trans "Shows you invoice totals per queue within the selected time period." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/sales/invoices/" %} + <hr/> + <h2>{% trans "Purchases" %}</h2> + <p>{% trans "Shows you Purchase Order totals per queue within the selected time period." %}</p> + {% include "stats/plot_snippet.html" with url="/stats/data/sales/purchases/" %} + <hr/> + <h2>{% trans "Service Parts" %}</h2> + <p>{% trans "Shows you how many parts have been ordered for each labour tier." %}</p> + <div class="row-fluid"> + <div class="span12"> + <div class="span10"> + <div class="plot plot-bar" data-source="/stats/data/sales/parts/"></div> + <div class="legend-container"></div> + </div> + <div class="span2"></div> + </div> </div> - <div class="span2"></div> - </div> -</div> {% endblock stats %} diff --git a/servo/templates/stats/statuses.html b/servo/templates/stats/statuses.html index f4fb427..bfcf73e 100755 --- a/servo/templates/stats/statuses.html +++ b/servo/templates/stats/statuses.html @@ -8,6 +8,7 @@ <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> + <li><a href="{% url 'stats-devices' %}">{% trans "Devices" %}</a></li> {% endblock tabs %} {% block stats %} |