{% extends "ie_base.html" %} {% load static %} {% block title %}Printable QR/Barcode{% endblock %} {% block MainContent %} {% if generated_items %}
{% for item in generated_items %}
{% if item.qr %} QR Code

{{item.qr.1}}

{% elif type_choice == "qrcode" or type_choice == "both" %}

No QR code available

{% endif %} {% if item.barcode %} Barcode {% elif type_choice == "barcode" or type_choice == "both" %}

No Barcode available

{% endif %}

{{ item.machine.name }}

{% endfor %}
{% endif %} {% endblock MainContent %} {% block JS %} {% endblock JS %}