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.
This commit is contained in:
Kumi 2024-01-17 18:46:20 +01:00
parent 0249bccd9f
commit 6762004c50
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -26,7 +26,9 @@
<video src="{{ step_video }}"></video>
{% endfor %}
</div>
{{ step.text|safe }} {% endfor %}
{{ step.text|safe }}
</div>
{% endfor %}
<br />
{% for index, comment in enumerate(comments) %}