{% extends 'core/base.html' %} {% load static %} {% block title %}System Settings - SwiftPOS{% endblock %} {% block topbar_title %}System Settings{% endblock %} {% block content %}
System Settings
Configure your business information, POS mode, and currency.
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
Business Information
{{ form.business_name }}
{{ form.business_phone }}
{{ form.business_email }}
{{ form.business_address }}
{{ form.receipt_footer }}
{{ form.logo }}
POS Interface
{{ form.pos_interface_mode }}
Classic POS — dropdown-based, works fully offline.
Grid POS V2 — visual product grid with cards.
{% if pos_interface_mode == 'grid' %}
Grid POS V2 is active — Open it here.
{% endif %}
Currency & VAT
{{ form.currency_symbol }}
e.g. {{ currency_symbol }} $ £ €
{{ form.decimal_places }}
{{ form.vat_rate }}
0 = disabled
{{ form.use_comma_separator }}
{% endblock %}