{% extends edc_base_template %} {% load static %} {% block main %} {{ block.super }}
{% if not stock_transfer %}
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 %}