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:
parent
0249bccd9f
commit
6762004c50
1 changed files with 3 additions and 1 deletions
|
@ -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) %}
|
||||
|
|
Loading…
Reference in a new issue