1
Fork 0
theorangeone.net-legacy/templates/blocks/ordered-list.html

7 lines
105 B
HTML

{% load wagtailcore_tags %}
<ol>
{% for item in value %}
<li>{{ item }}</li>
{% endfor %}
</ol>