fix routing issue

This commit is contained in:
2025-09-29 15:14:06 +02:00
parent 9497633e78
commit 54ca564db8
3 changed files with 60 additions and 14 deletions

View File

@@ -9,7 +9,7 @@
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- UX Enhancement and Mobile & Accessibility CSS -->
<link rel="stylesheet" href="{{ url_for('ux_features_css') }}">
<link rel="stylesheet" href="{{ url_for('static.ux_features_css') }}">
</head>
<body>
@@ -459,20 +459,20 @@
<script src="{{ url_for('static', filename='js/localization.js') }}"></script>
<!-- UX Enhancement Scripts -->
<script src="{{ url_for('keyboard_shortcuts_js') }}"></script>
<script src="{{ url_for('drag_drop_js') }}"></script>
<script src="{{ url_for('bulk_operations_js') }}"></script>
<script src="{{ url_for('user_preferences_js') }}"></script>
<script src="{{ url_for('advanced_search_js') }}"></script>
<script src="{{ url_for('undo_redo_js') }}"></script>
<script src="{{ url_for('static.keyboard_shortcuts_js') }}"></script>
<script src="{{ url_for('static.drag_drop_js') }}"></script>
<script src="{{ url_for('static.bulk_operations_js') }}"></script>
<script src="{{ url_for('static.user_preferences_js') }}"></script>
<script src="{{ url_for('static.advanced_search_js') }}"></script>
<script src="{{ url_for('static.undo_redo_js') }}"></script>
<!-- Mobile & Accessibility Scripts -->
<script src="{{ url_for('mobile_responsive_js') }}"></script>
<script src="{{ url_for('touch_gestures_js') }}"></script>
<script src="{{ url_for('accessibility_features_js') }}"></script>
<script src="{{ url_for('screen_reader_support_js') }}"></script>
<script src="{{ url_for('color_contrast_compliance_js') }}"></script>
<script src="{{ url_for('multi_screen_support_js') }}"></script>
<script src="{{ url_for('static.mobile_responsive_js') }}"></script>
<script src="{{ url_for('static.touch_gestures_js') }}"></script>
<script src="{{ url_for('static.accessibility_features_js') }}"></script>
<script src="{{ url_for('static.screen_reader_support_js') }}"></script>
<script src="{{ url_for('static.color_contrast_compliance_js') }}"></script>
<script src="{{ url_for('static.multi_screen_support_js') }}"></script>
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
</body>