{% extends "base.html" %} {% block title %}Job {{ job.job_uuid[:8] if job.job_uuid else job.id }} — POPS{% endblock %} {% block content %}
| Customer | {{ job.customer or '—' }} |
| Material | {{ job.job_material or '—' }}{% if job.job_color %} · {{ job.job_color }}{% endif %} |
| Printer | {{ job.printer.name if job.printer else '—' }} |
| Bracket | {% if job.bracket %}{{ job.bracket.name }}{% else %}—{% endif %} |
| Created | {{ job.created_at.strftime('%d.%m.%Y %H:%M') }} |
| Started | {{ job.started_at.strftime('%d.%m.%Y %H:%M') }} |
| Finished | {{ job.finished_at.strftime('%d.%m.%Y %H:%M') }} |
| Duration | {{ job.duration_minutes }} min |
| Cost | € {{ "%.2f"|format(job.cost_eur) }} |
| Notes | {{ job.notes }} |
| Bounding box | {{ stl.cube_x|round(1) }} × {{ stl.cube_y|round(1) }} × {{ stl.cube_z|round(1) }} mm |
| Volume | {{ stl.volume_ccm }} cm³ |
Geometry not available for gcode files.
{% elif job.file_name %}Not yet analysed.
{% else %}No file attached.
{% endif %}| {{ entry.created_at.strftime('%d.%m.%Y %H:%M') }} | {{ entry.message }} |