{% extends 'base.html' %} {% block title %}{{ job.name }}{% endblock %} {% block content %}
{% set qty = job.order_qty or 1 %} {% set multi = qty > 1 %}| Client | {{ job.client_name or '—' }} |
|---|---|
| Matiere | {% if job.material_name %} {{ job.material_type }} {{ job.material_name }} {% else %}—{% endif %} |
| Fichier source | {{ job.source_file or '—' }} |
| Date | {{ job.created_at[:10] }} |
| Poids plateau | {{ job.weight_g }} g |
| Pieces / plateau | {{ job.pieces_per_plate or 1 }} |
| Quantite commandee | {{ qty }} pièce{{ 's' if qty > 1 else '' }} |
| Duree plateau | {{ job.print_time_s | fmt_time }} |
| Coeff design | ×{{ job.design_multiplier }} |
| Marge brute | {{ job.gross_margin_pct }} % |
| Remise | {{ job.discount_pct }} % |
| Profil machine | {{ job.machine_profile_name }} |
| Profil manutention | {{ job.handling_profile_name }} |
| Profil tarif | {{ job.pricing_profile_name }} |