mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
Display some basic stats
This commit is contained in:
@ -2,4 +2,27 @@
|
||||
{% load inventree_extras %}
|
||||
{% load i18n %}
|
||||
|
||||
HELLO WORLD
|
||||
<table class='table table-striped table-condensed'>
|
||||
<tr>
|
||||
<td colspan='2'><b>{% trans "Parts" %}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{% trans "Parts" %}</td>
|
||||
<td>{{ part_count }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{% trans "Part Categories" %}</td>
|
||||
<td>{{ part_cat_count }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><b>{% trans "Stock Items" %}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{% trans "Stock Items" %}</td>
|
||||
<td>{{ stock_item_count }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{% trans "Stock Locations" %}</td>
|
||||
<td>{{ stock_loc_count }}</td>
|
||||
</tr>
|
||||
</table>
|
Reference in New Issue
Block a user