summaryrefslogtreecommitdiffstats
path: root/inventar/templates/stats.html
blob: 32444f12b4055c0728eccd096233f956f095be77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load i18n %}

{% block content %}
	<h2>Statistics:</h2>

	<ul>
		<li>Number of codes: {{ number_of_codes }}</li>
		<li>Number of items: {{ number_of_items }}
			<ul>
				<li>with parent: {{ number_of_items_with_parent }}</li>
				<li>without parent: {{ number_of_items_without_parent }}</li>
			</ul></li>
		<li>Item with most barcodes: {{ max_barcodes_item.name }} [<b>{{max_barcodes_item.number_of_attached_barcodes}}</b> Barcodes]</li>
	</ul>

	Work in Progress...
{% endblock %}