From b695c7296ce38eb5a9691b0082141f86a9afffb8 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 13 Feb 2025 15:36:41 +0000 Subject: [PATCH] jobs: Put the most recent job at the top Signed-off-by: Michael Tremer --- src/templates/jobs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/jobs/index.html b/src/templates/jobs/index.html index 457f3f18..c4e752a6 100644 --- a/src/templates/jobs/index.html +++ b/src/templates/jobs/index.html @@ -40,7 +40,7 @@
{# Render all jobs #} - {% for date, items in jobs | groupby("date") %} + {% for date, items in jobs | groupby("date") | reverse %}

{{ date | format_day }}

-- 2.47.2