{% extends "base.html" %} {% block title %}Jobs — POPS{% endblock %} {% block content %}
Results for {{ q }}
{% endif %}| UUID | Customer | File | Printer | Material | Status | Created |
|---|---|---|---|---|---|---|
| {{ j.job_uuid[:8] if j.job_uuid else '—' }} | {{ j.customer or '—' }} | {{ j.file_name or '—' }} | {{ j.printer.name if j.printer else '—' }} | {% if j.filament %}{{ j.filament.material.value }}{% if j.filament.color %} · {{ j.filament.color }}{% endif %}{% else %}—{% endif %} | {% set s = j.status.value %} {% if s == 'printing' %}printing {% elif s == 'done' %}done {% elif s == 'failed' %}failed {% elif s == 'cancelled' %}cancelled {% else %}queued {% endif %} | {{ j.created_at.strftime('%d.%m.%Y %H:%M') }} |