{% extends "modern/base.html" %} {% block title %}{{ printer_name }} - Zebra Day{% endblock %} {% block content %}
Dashboard / Printers / {{ lab }} / {{ printer_name }}

Printer Information

{% if printer_info.ip_address != 'dl_png' %} Web Interface {% endif %}
{% for key, value in printer_info.items() %} {% endfor %}
{{ key }} {% if key == 'ip_address' and value != 'dl_png' %} {{ value }} {% elif key == 'status' %} {% if value == 'online' %} Online {% else %} Offline {% endif %} {% elif key == 'label_zpl_styles' %} {% for style in value %} {{ style }} {% endfor %} {% else %} {{ value }} {% endif %}

Quick Actions

{% if printer_config %}

Printer Configuration

{{ printer_config }}
{% endif %}

Test Print

Send a test label to verify the printer is working correctly.

{% for style in printer_info.label_zpl_styles[:6] %}
{{ style }} Test print
{% endfor %}
{% endblock %}