From 5ef70a88cf90cc23964c5d54d071154bf107e29f Mon Sep 17 00:00:00 2001 From: Amolith Date: Wed, 18 Mar 2026 22:12:45 -0600 Subject: [PATCH] Reorder project page stat cards based on in-progress count --- templates/project.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/templates/project.html b/templates/project.html index f1ce4b79a5c36d50c3ecdbc5a7d0cd932aa36631..079c2f0d4434c871fd08146e69210f48ec1756fb 100644 --- a/templates/project.html +++ b/templates/project.html @@ -14,8 +14,9 @@

{{ project_name }}

+{% if stats_in_progress > 0 %}
-
+

In progress

{{ stats_in_progress }}

@@ -28,6 +29,22 @@

{{ stats_closed }}

+{% else %} +
+
+

Open

+

{{ stats_open }}

+
+
+

In progress

+

{{ stats_in_progress }}

+
+
+

Closed

+

{{ stats_closed }}

+
+
+{% endif %} {% if !next_up.is_empty() %}