From 6762004c5093add98bc8cc38dab48412920d9989 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 17 Jan 2024 18:46:20 +0100 Subject: [PATCH] Fix article template loop rendering issue Corrected improper nesting within for-loop structure in the article template to ensure that step content is appropriately wrapped in a div, resolving visual inconsistencies in article step display. This change maintains structured and clean output for article content. --- templates/article.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/article.html b/templates/article.html index 79dc0ac..df624f0 100644 --- a/templates/article.html +++ b/templates/article.html @@ -26,7 +26,9 @@ {% endfor %} - {{ step.text|safe }} {% endfor %} + {{ step.text|safe }} + + {% endfor %}
{% for index, comment in enumerate(comments) %}