diff --git a/VERSION b/VERSION
index 805f574..1c1c657 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1167
\ No newline at end of file
+1168
\ No newline at end of file
diff --git a/backend/static/index.html b/backend/static/index.html
index 4ab7285..924cf5d 100644
--- a/backend/static/index.html
+++ b/backend/static/index.html
@@ -86,14 +86,14 @@
Ban Yaro
-
+
-
-
-
-
-
+
+
+
+
+
@@ -617,11 +617,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -631,7 +631,7 @@
-
+
diff --git a/backend/static/js/app.js b/backend/static/js/app.js
index 5515a3a..3dd65cf 100644
--- a/backend/static/js/app.js
+++ b/backend/static/js/app.js
@@ -3,7 +3,7 @@
Router, State-Management, Navigation, Initialisierung.
============================================================ */
-const APP_VER = '1167'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
+const APP_VER = '1168'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
window.APP_VER = APP_VER; // global verfügbar für andere Module (z.B. offline-indicator)
window.APP_VERSION = APP_VERSION;
diff --git a/backend/static/js/ui.js b/backend/static/js/ui.js
index 4b014c2..cf4d1d8 100644
--- a/backend/static/js/ui.js
+++ b/backend/static/js/ui.js
@@ -1251,6 +1251,7 @@ const UI = (() => {
let _myKommentar = '';
let _hoverStar = 0;
let _widgetOpen = false;
+ let _ratings = []; // alle Bewertungen (mit Kommentar) für die Liste
function _starHTML(filled, half = false, idx = 0) {
const cls = filled ? 'rating-star rating-star--filled' : (half ? 'rating-star rating-star--half' : 'rating-star rating-star--empty');
@@ -1289,6 +1290,24 @@ const UI = (() => {
`;
}
+ function _renderRatingsList() {
+ const items = _ratings.filter(r => r.kommentar && r.kommentar.trim());
+ if (!items.length) return '';
+ return `
+