From 7290fb4ed11ed1caa034f646930bb86005f3912f Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Tue, 11 Aug 2026 01:52:06 +0200 Subject: [PATCH] Fix of an missing parethasys --- Web/app.py | 1 + Web/templates/library_table.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Web/app.py b/Web/app.py index 1869a10..b671e74 100755 --- a/Web/app.py +++ b/Web/app.py @@ -3787,6 +3787,7 @@ def api_item_detail(item_id):

{html.escape(str(item.get('Name', 'Untitled')))}

ISBN: {html.escape(str(item.get('ISBN', item.get('Code4', '-'))))}

Anzahl: {html.escape(str(item.get('SeriesCount', '-')))}

+

Code: {html.escape(str(item.get('Code_4', '-')))}

Ort: {html.escape(str(item.get('Ort', '-')))}

Typ: {html.escape(str(item.get('ItemType', '-')))}

Kategorie: {html.escape(str(item.get('library_category', '-')))}

diff --git a/Web/templates/library_table.html b/Web/templates/library_table.html index 8f77143..3e7badc 100644 --- a/Web/templates/library_table.html +++ b/Web/templates/library_table.html @@ -800,7 +800,7 @@ return ` ${escapeHtml(item.Name || 'Untitled')} - ${escapeHtml(item.ISBN || item.Code_4 || item.Code4 || '-')} + ${escapeHtml(item.Code_4 || item.Code4 || '-')} ${getItemTypeLabel(item.ItemType || 'book')} ${item.Quantity || item.GroupedDisplayCount || 1}