From 1ec61bb1e83c002b180503d618e6579eb386b7b0 Mon Sep 17 00:00:00 2001 From: "Rudy (zarya)" Date: Thu, 21 Aug 2025 21:05:32 +0200 Subject: [PATCH] Fixes #1908 --- src/backoffice/templates/info_desk/inventory_index.html | 3 +++ src/backoffice/templates/scan_ticket_pos_select.html | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/backoffice/templates/info_desk/inventory_index.html b/src/backoffice/templates/info_desk/inventory_index.html index 14cb79596..cae6d425c 100644 --- a/src/backoffice/templates/info_desk/inventory_index.html +++ b/src/backoffice/templates/info_desk/inventory_index.html @@ -5,6 +5,9 @@ {% endblock %} {% block content %} + {% if pos_list|length == 0 %} +

No POS locations configured

+ {% endif %}
{% for pos in pos_list %} diff --git a/src/backoffice/templates/scan_ticket_pos_select.html b/src/backoffice/templates/scan_ticket_pos_select.html index eae17df80..385626407 100644 --- a/src/backoffice/templates/scan_ticket_pos_select.html +++ b/src/backoffice/templates/scan_ticket_pos_select.html @@ -5,6 +5,9 @@ {% endblock %} {% block content %} + {% if pos_list|length == 0 %} +

No POS locations configured

+ {% endif %}