summaryrefslogtreecommitdiffstats
path: root/inventar/templates/stats.html
diff options
context:
space:
mode:
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 %}