{# Only Text label #}
{% if with_text is True and with_qr is False %}
{% endif %}
{# Text and QR-Code #}
{% if with_text is True and with_qr is True %}
{# Horizontal label #}
{% if text_location == "right" or text_location == "left" %}
{% if text_location == "right" %}
{% include "netbox_qrcode/qrcode3_sub_qrcode.html" %}
|
{% endif %}
{{text|safe|escape}}
|
{% if text_location == "left" %}
{% include "netbox_qrcode/qrcode3_sub_qrcode.html" %}
|
{% endif %}
{% endif %}
{# Vertical label #}
{% if with_qr and text_location == "up" or text_location == "down" %}
{% if text_location == "down" %}
{% include "netbox_qrcode/qrcode3_sub_qrcode.html" %}
|
{% endif %}
{{text|safe|escape}}
|
{% if text_location == "up" %}
{% include "netbox_qrcode/qrcode3_sub_qrcode.html" %}
|
{% endif %}
{% endif %}
{% endif %}
{# Only QR-Code label #}
{% if with_text is False and with_qr is True %}
{% include "netbox_qrcode/qrcode3_sub_qrcode.html" %}
{% endif %}