{% extends "base.html" %} {% block title %}Printers — POPS{% endblock %} {% block content %}
| Name | Model | Location | Status | Added |
|---|---|---|---|---|
| {{ p.name }} | {{ p.model or '—' }} | {{ p.location or '—' }} | {% set s = p.status.value %} {% if s == 'printing' %}printing {% elif s == 'idle' %}idle {% elif s == 'error' %}error {% else %}offline {% endif %} | {{ p.created_at.strftime('%d.%m.%Y') }} |