{% extends "base.html" %} {% block title %}Jobs — POPS{% endblock %} {% block content %}
| Name | Printer | Filament | Status | Duration | Cost | Created |
|---|---|---|---|---|---|---|
| {{ j.name }} | {{ j.printer.name if j.printer else '—' }} | {% if j.filament %}{{ j.filament.material.value }} {{ j.filament.color or '' }}{% 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 %} | {% if j.duration_minutes %}{{ j.duration_minutes }} min{% else %}—{% endif %} | {% if j.cost_eur %}€ {{ "%.2f"|format(j.cost_eur) }}{% else %}—{% endif %} | {{ j.created_at.strftime('%d.%m %H:%M') }} |