{% extends edc_base_template %} {% load static %} {% block main %} {{ block.super }}
{% if not location_id %}
Pharmacy home > {{ location|default:"Location" }}
Confirm transferred stock at {{ location|default:"Location" }}
{% csrf_token %}
{% else %}
Pharmacy home > {{ location|default:"Location" }}
Confirm transferred stock
{% if not item_count %}All done!{% endif %}
{% csrf_token %}
{% for i in item_count %}
{% endfor %}
 
Last scanned {{ confirmed_count }}
{% for code, comment in last_codes %} {% endfor %}
{% if comment == "confirmed"%} {% elif comment == "already confirmed" %} {% elif comment == "invalid" %} {% endif %} {{ code }} {{ comment }}
{% endif %}
{% endblock main %}