From 45d6183ea41ba141c939b7459e6f8902a63addbf Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Wed, 3 Jun 2026 00:54:59 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20reverse=20rating=20bar=20order=20to=205?= =?UTF-8?q?=E2=98=85=E2=86=921=E2=98=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/adapters/template-askama/templates/wrapup.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/crates/adapters/template-askama/templates/wrapup.html b/crates/adapters/template-askama/templates/wrapup.html index 182686c..bb59b20 100644 --- a/crates/adapters/template-askama/templates/wrapup.html +++ b/crates/adapters/template-askama/templates/wrapup.html @@ -19,12 +19,13 @@ {% endif %}
{% for i in 0..5 %} + {% let ri = 4 - i %}
- {{ i + 1 }}★ + {{ ri + 1 }}★
-
+
- {{ report.rating_distribution[i] }} + {{ report.rating_distribution[ri] }}
{% endfor %}