{% extends 'core/base_print.html' %} {% load i18n static %} {% block extra_head %} {% endblock %} {% block browser_title %}{% blocktrans %}Print: Completeness report{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Completeness report{% endblocktrans %}{% endblock %} {% block content %}
✔ | {% trans "Items registered at this location" %} | {{ items_count }} |
---|---|---|
🗙 | {% trans "Missing items" %} | {{ missing_items }} |
+ | {% trans "Items moved to this location" %} | {{ moved_items }} |
{% trans "Status" %} | {% trans "Barcode/ID" %} | {% trans "Name" %} | {% trans "Item type" %} | {% trans "Category" %} | {% trans "Status" %} |
---|---|---|---|---|---|
{% if item.status == 'moved' %} + {% elif item.status == "in_place" %} ✔ {% endif %} | #{{ item.item.id }} ({{ item.item.barcode }}) | {{ item.item.name }} | {{ item.item.item_type|default:"–" }} | {{ item.item.category }} | {% include "plank/item/status.html" with item=item.item short=True %} |