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

Printer Information

{% if printer_info.ip_address != 'dl_png' %} Web Interface {% endif %}
{% if printer_info.notes %} {% endif %}
Printer ID {{ printer_id }}
Display Name {{ printer_info.printer_name | default('Not set', true) }}
Location {{ printer_info.lab_location | default('Not set', true) }}
Manufacturer {{ printer_info.manufacturer | default('zebra') | title }}
Model {{ printer_info.model | default('Unknown') }}
Serial {{ printer_info.serial | default('Unknown') }}
IP Address {% if printer_info.ip_address != 'dl_png' %} {{ printer_info.ip_address }} {% else %} {{ printer_info.ip_address }} {% endif %}
Print Method {{ printer_info.print_method | default('socket') }}
Label Styles {% for style in printer_info.label_zpl_styles %} {{ style }} {% endfor %}
Default Label Style {% if printer_info.default_label_style %} {{ printer_info.default_label_style }} {% else %} {{ printer_info.label_zpl_styles[0] if printer_info.label_zpl_styles else 'None' }} (first in list) {% endif %}
Notes {{ printer_info.notes }}

Edit Settings

User-friendly name for this printer
{% if available_locations %} {% else %} Define locations at the lab level first {% endif %}
Style used when printing without specifying a template

Quick Actions

Print Label Send a print request
View Templates Available label styles
Back to Lab View all printers
{% 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 %}