{% extends "shopyo_base/module_base.html" %} {% set active_page = 'inventory' %} {% block pagehead %}Inventory Counts{% endblock %} {% block sidebar %}{% include 'inventory/blocks/sidebar.html' %}{% endblock %} {% block module_content %}

Inventory Counts

{{ counts|length }} total

{% for c in counts %} {% else %} {% endfor %}
#DateItemsStatus
{{ c.id }} {{ c.created_at.strftime('%Y-%m-%d %H:%M') if c.created_at else '-' }} {{ c.items|length }} {% if c.status == 'draft' %} Draft {% elif c.status == 'completed' %} Completed {% else %} Reviewed {% endif %}
No counts yet
{% endblock %}