Files
Web-NibblePoker/templates/elements/list-ul.jinja
Herwin Bozet 0e91b5ed96 Implemented tools as applets, Added Docker CCTV page, Fixed small issues
Update app.py, uuid-generator.yml, and 47 more files...
2025-02-20 17:24:05 +01:00

10 lines
276 B
Django/Jinja

<ul class="l-bullets l-bullet-manual">
{% for list_item in list_items %}
{% if list_item.__class__.__name__ == 'list' %}
{{ render_list_ul(list_item) }}
{% else %}
<li>{{ list_item }}</li>
{% endif %}
{% endfor %}
</ul>