summaryrefslogtreecommitdiffstats
path: root/inventar/templates/stats.html
blob: 10829a7bb570f14bc35a6ba8728ee682b6f74ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}