{% extends 'base.html' %} {% block title %}Commandes{% endblock %} {% block content %}
{% if jobs %}
{% for j in jobs %} {% endfor %}
DateNomClientRéf. plateauPoids DuréeDesignMarge bruteTotal margeRemise Prix final
{{ j.created_at[:10] }} {{ j.name }} {{ j.client_name or '—' }} {{ j.plate_name or '—' }} {{ j.weight_g }} g {{ j.print_time_s | fmt_time }} ×{{ j.design_multiplier }} {{ j.gross_margin_pct }}% {% if j.total_marge %}{{ '%.2f'|format(j.total_marge) }} €
{% if j.marge_pct_on_ht %}{{ j.marge_pct_on_ht }}% du HT{% endif %}{% else %}—{% endif %}
{% if j.discount_pct > 0 %} -{{ j.discount_pct }}% {% else %}—{% endif %} {{ j.final_price }} €
{% if j.client_token %} {% endif %}
{% else %}

Aucune commande enregistrée.

Créer le premier calcul
{% endif %}
{% endblock %}