{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Cashier Management - Gvelo Enterprise Platform{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform - Cashier Management

Logout
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Add New Cashier

Add cashiers to your shop. There is no limit on the number of cashiers.








Cashier List

{% if cashiers %} {% for cashier in cashiers %} {% endfor %}
# Name Username Email Phone Cert Total Sales Actions
{{ loop.index }} {{ cashier[5] or '-' }} {{ cashier[1] }} {{ cashier[3] or '-' }} {{ cashier[4] or '-' }} {% if cashier[6] %} Yes {% else %}-{% endif %} {{ currency_symbol }} {{ "%.2f"|format(sales_dict.get(cashier[0], 0)) }} Edit
{% else %}

No cashiers found. Add your first cashier above.

{% endif %}

Scanning Options

{{ ui.button('Scanner Center', '/scanner-center?return_to=/cashiers&target=/sales') }} {{ ui.button('Connect Phone via Bluetooth/Link', '/connect-phone-scanner?return_to=/cashiers&target=/sales') }} {{ ui.button('Hardware Barcode Scanner', '/scan?return_to=/cashiers&target=/sales') }} {{ ui.button('Mobile Camera Scanner', '/mobile-scan?return_to=/cashiers&target=/sales') }} {{ ui.button('Barcode Hub', '/barcode') }} {{ ui.button('Training Mode', '/barcode/training') }}
{% endblock %}