{% extends 'base/layout.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Bulk print QR" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {% csrf_token %}
{% trans "1. Choose a template" %}
{% if qr_templates %}
{% for tpl in qr_templates %} {% endfor %}
{% else %}

{% trans "No active templates apply to this object type." %}

{% endif %}
{% trans "Preview" %}

{% trans "Select a template to preview it." %}

{% trans "2. Objects" %} (0 / {{ objects|length }})
{% for obj in objects %} {% endfor %}
{% trans "Object" %} {% trans "Status" %}
{{ obj }} {% trans "Pending" %}
{{ objects_json|json_script:"qr-bulk-objects-data" }} {% if show_niimbot_button %} {% endif %} {% endblock %}