{% extends "modern/base.html" %} {% block title %}Printers - Zebra Day{% endblock %} {% block content %} {% if not lab and labs %}

Select a Lab

{% for lab_name in labs %}
{{ lab_name }} View printers
{% endfor %}
{% endif %} {% if printers %}

Printers{% if lab %} in {{ lab_name | default(lab) }}{% endif %}

Rescan
{% for printer in printers %} {% endfor %}
Printer Location IP Address Status Label Styles Actions
{{ printer.name }}
{{ printer.manufacturer | default('zebra') | title }} {{ printer.model | default('Unknown model') }} {% if printer.id != printer.name %}
ID: {{ printer.id }} {% endif %}
{% if printer.lab_location %} {{ printer.lab_location }} {% else %} {% endif %} {% if printer.ip_address != 'dl_png' %} {{ printer.ip_address }} {% else %} {{ printer.ip_address }} {% endif %} {% if printer.status == 'online' %} Online {% else %} Offline {% endif %} {% for style in printer.label_zpl_styles[:3] %} {{ style }} {% endfor %} {% if printer.label_zpl_styles | length > 3 %} +{{ printer.label_zpl_styles | length - 3 }} more {% endif %} Details Print
{% elif lab %}

No printers found in {{ lab }}

Scan Network
{% endif %}

Scan Network for Printers

{% for lab_name in labs %}
{% endblock %}