LAZY LOADING

updated a bunch of packages
This commit is contained in:
aronwk-aaron
2023-11-18 00:41:35 -06:00
parent abc8af89c5
commit b9fc039a7e
6 changed files with 192 additions and 80 deletions

View File

@@ -0,0 +1,9 @@
{% 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 %}