NexusDashboard/app/templates/partials/charxml/_inventory.html.j2
aronwk-aaron b9fc039a7e LAZY LOADING
updated a bunch of packages
2023-11-18 00:41:35 -06:00

10 lines
346 B
Django/Jinja

{% if inventory.i is iterable and (inventory.i is not string and inventory.i is not mapping) %}
{% for inv_item in inventory.i %}
{% include 'partials/charxml/_inv_grid.html.j2' %}
{% endfor %}
{% else %}
{% with inv_item=inventory.i %}
{% include 'partials/charxml/_inv_grid.html.j2' %}
{% endwith %}
{% endif %}