From a5954ce8cbf07b108677b1b20aa0ec45e3fbbb33 Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Mon, 24 Aug 2026 17:16:59 +0200 Subject: [PATCH] Correction of the filter naming in the upload_admin.html and edit_library.html --- Web/app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Web/app.py b/Web/app.py index 08d9d55..8a7beaf 100755 --- a/Web/app.py +++ b/Web/app.py @@ -7011,12 +7011,15 @@ def item_edit(id): current_item['IndividualCodes'] = '\n'.join(individual_codes) + filter_names = it.get_filter_names() + return render_template( 'edit_library.html', username=session['username'], item=current_item, show_library_features=show_library_features, library_module_enabled=library_module_active, + filter_names=filter_names, page_title=f"Bearbeiten: {current_item.get('Name', '')}" )