{% extends "base.html" %} {% block title %}Printers — POPS{% endblock %} {% block content %}
Printers
Manage Types
{% if not printer_types %} {% endif %}
{% if printers %} {% for p in printers %} {% endfor %}
Name Type Bed volume Location Status
{{ p.name }} {{ p.printer_type.name if p.printer_type else '—' }} {% if p.printer_type %} {{ p.printer_type.bed_x_mm }}×{{ p.printer_type.bed_y_mm }}×{{ p.printer_type.bed_z_mm }} mm {% else %}—{% endif %} {{ p.location or '—' }} {% set s = p.status.value %} {% if s == 'printing' %}printing {% elif s == 'idle' %}idle {% elif s == 'error' %}error {% else %}offline {% endif %}
{% else %}
No printers added yet.
{% endif %}
{# ── Add Printer Modal ── #} {% endblock %}