From 26fabf3a430d045ee57c41f8a791b49041ed7c98 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 21 Oct 2022 17:11:15 +0100 Subject: [PATCH] Ensure tags are sorted --- website/common/templates/common/content-details.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/common/templates/common/content-details.html b/website/common/templates/common/content-details.html index b326719..006af58 100644 --- a/website/common/templates/common/content-details.html +++ b/website/common/templates/common/content-details.html @@ -27,7 +27,7 @@ - {% for tag in page.tags.all %} + {% for tag in page.tags.all|dictsort:"slug" %} #{{ tag.slug }} {% endfor %}