{% extends "base.html" %} {% load i18n %} {% block page_title %}PureScan Command Sheet{% endblock %} {% block content %}
PureScan Terminal Dashboard

🎯 PureScan — Command Sheet

Print and place at warehouse workstations. Scan any code to trigger the action.

Action Codes
{% for cmd in action_commands %}
{% if cmd.qr_data_uri %} QR: {{ cmd.code }} {% else %}
{{ cmd.code }}
{% endif %}
{{ cmd.icon }} {{ cmd.label }}
{{ cmd.code }}
{% endfor %}

# Quantity Codes

Scan to set the quantity for Add, Remove, or Stocktake actions. Multiple scans accumulate.

Quantity Codes
{% for cmd in qty_commands %}
{% if cmd.qr_data_uri %} QR: {{ cmd.code }} {% else %}
{{ cmd.code }}
{% endif %}
{{ cmd.label }}
{{ cmd.code }}
{% endfor %}
{% endblock %}