mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-22 13:37:21 +00:00
b9fc039a7e
updated a bunch of packages
10 lines
346 B
Django/Jinja
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 %}
|