{% extends "base.html" %} {% block title %}Printers — POPS{% endblock %} {% block content %}
| 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 %} |