1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/blocks/ordered-list.html

8 lines
105 B
HTML
Raw Normal View History

2016-12-03 22:56:49 +00:00
{% load wagtailcore_tags %}
<ol>
{% for item in value %}
<li>{{ item }}</li>
{% endfor %}
</ol>