{% extends 'core/base.html' %} {% load currency_filters %} {% load static %} {% block title %}POS Terminal - SwiftPOS{% endblock %} {% block topbar_title %} POS Terminal {% endblock %} {% block extra_css %} {% endblock %} {% block content %}
You are currently offline. Orders will be saved and synced automatically when you’re back online.
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
Active order
{{ order.order_number }}
Cashier: {{ user_name }}
{{ order_items|length }} item{{ order_items|length|pluralize }} Total: {{ currency_symbol }}{{ final_total|floatformat:2 }} Today’s summary
Product Selection
Choose product & quantity, then add to cart
{% if barcode_scanner_enabled %}
{% else %}
Barcode scanning is not available on your current plan.
{% endif %}
Use SKU or name to quickly find items.
Selected product
Price: {{ currency_symbol }}0.00 · Stock: 0
Cart {{ order_items|length }} item{{ order_items|length|pluralize }}
Subtotal {{ currency_symbol }}{{ subtotal|floatformat:2 }}
Discount − {{ currency_symbol }}0.00
VAT{% if vat_rate %} ({{ vat_rate }}%){% endif %} {{ currency_symbol }}{{ tax_amount|floatformat:2 }}

Total {{ currency_symbol }}{{ final_total|floatformat:2 }}
{% csrf_token %}
{% include 'pos/_split_payment_panel.html' %}
{% endblock %} {% block extra_js %} {# Variant Picker Modal - Phase 2 #} {% include 'pos/_variant_picker_modal.html' %} {% endblock %}