summaryrefslogtreecommitdiffstats
path: root/inventar/templates/stats.html
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-07-27 01:36:26 +0200
committerSebastian Reichel <sre@ring0.de>2012-07-27 01:36:26 +0200
commitf07de9c031d7612b8ca656c34ebce57f6856b6b2 (patch)
treea711318f19dff5e5231b7482ce4177c2c72816e6 /inventar/templates/stats.html
parentffdfc69cc69503e71c0f001c3e8d8a2f06abb578 (diff)
downloadktt-inventory-system-f07de9c031d7612b8ca656c34ebce57f6856b6b2.tar.bz2
add new statistics page
Diffstat (limited to 'inventar/templates/stats.html')
-rw-r--r--inventar/templates/stats.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/inventar/templates/stats.html b/inventar/templates/stats.html
new file mode 100644
index 0000000..10829a7
--- /dev/null
+++ b/inventar/templates/stats.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+ <h2>Statistics:</h2>
+
+ <ul>
+ <li>Number of codes: {{ number_of_codes }}
+ <li>Number of items: {{ number_of_items }}
+ <ul>
+ <li>with parent: {{ number_of_items_with_parent }}
+ <li>without parent: {{ number_of_items_without_parent }}
+ </ul>
+ </ul>
+
+ Work in Progress...
+{% endblock %}