cl-deck-builder2/templates/category/child-list.html
2024-03-05 22:11:33 -05:00

11 lines
261 B
HTML

<div class="w3-container">
{% if children %}
<div class="w3-row w3-row-padding w3-padding-16">
<pre class="w3-code">{% for child in children %}{{ child.name }}
{% endfor %}</pre>
</div>
{% else %}
<p>Node has no children.</p>
{% endif %}
</div>