diff --git a/chezbetty/templates/admin/items_list.jinja2 b/chezbetty/templates/admin/items_list.jinja2 index fddfbdd..24b4fb6 100644 --- a/chezbetty/templates/admin/items_list.jinja2 +++ b/chezbetty/templates/admin/items_list.jinja2 @@ -10,7 +10,7 @@ {% include "items_menu.jinja2" %} {% endblock %} -{% block content %} +{% block contentwide %} {% set sort=request.GET["sort"]|default(None) %} {% set dir=request.GET["direction"]|default("asc") %} @@ -35,6 +35,8 @@ Inventory Percent Theftiness Profit + Barcode + Tags {% endif %} @@ -78,6 +80,8 @@ {{ item.inventory_percent|round(2) }}% {{ item.theftiness|round(2) }}% {{ item.profit|format_currency|safe }} + {{ item.barcode }} + {{ item.tags|length }} {% endif %} {% endfor %}