{% extends "base.html" %} {% block title %}{{ printer.name }} — POPS{% endblock %} {% block content %}
| Type | {{ printer.printer_type.name if printer.printer_type else '—' }} |
| Bed volume | {% if printer.printer_type %}{{ printer.printer_type.bed_x_mm }}×{{ printer.printer_type.bed_y_mm }}×{{ printer.printer_type.bed_z_mm }} mm{% else %}—{% endif %} |
| Location | {{ printer.location or '—' }} |
| Purchased | {{ printer.bought_at.strftime('%d.%m.%Y') if printer.bought_at else '—' }} |
| Last maintenance | {{ printer.last_maintenance_at.strftime('%d.%m.%Y') if printer.last_maintenance_at else '—' }} |
| Decommissioned | {{ printer.decommissioned_at.strftime('%d.%m.%Y') if printer.decommissioned_at else '—' }} |
| {{ entry.created_at.strftime('%d.%m.%Y %H:%M') }} | {{ entry.message }} |