mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-09 11:48:20 +00:00
more sanity checks
This commit is contained in:
parent
c9ad415f13
commit
ab8119c5b8
@ -4,7 +4,9 @@
|
|||||||
alt="{{ inv_item.attr_l|get_lot_name }}"
|
alt="{{ inv_item.attr_l|get_lot_name }}"
|
||||||
class="border p-1 border-primary rounded m-1"
|
class="border p-1 border-primary rounded m-1"
|
||||||
width="60"
|
width="60"
|
||||||
{% if inv_item.attr_eq == "true" %}style="background-color:#d16f05;"{% endif %}
|
{% if 'attr_eq' in inv_item %}
|
||||||
|
{% if inv_item.attr_eq == "true" %}style="background-color:#d16f05;"{% endif %}
|
||||||
|
{% endif %}
|
||||||
height="60"
|
height="60"
|
||||||
data-html="true"
|
data-html="true"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
@ -20,9 +22,11 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if inv_item.attr_b == "true" %}
|
{% if 'attr_b' in inv_item %}
|
||||||
<span class="inventory-lock">
|
{% if inv_item.attr_b == "true" %}
|
||||||
<i class='fas fa-lock'></i>
|
<span class="inventory-lock">
|
||||||
</span>
|
<i class='fas fa-lock'></i>
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user