{% extends "base.html" %} {% block title %}Printers — POPS{% endblock %} {% block content %}
Printers
{% if printers %} {% for p in printers %} {% endfor %}
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') }}
{% else %}
No printers configured yet.
{% endif %}
{% endblock %}