{% extends 'base.html' %} {% block title %}Projets{% endblock %} {% block content %} {% if projects %}
{% for p in projects %}
{{ p.name }}
{{ p.client_name or 'Sans client' }}
{% if p.deadline %} {{ p.deadline }} {% endif %}
Runs
{{ p.job_count }}
Pièces totales
{{ p.total_pieces }}
CA total
{{ "%.2f"|format(p.total_revenue) }} €
{% endfor %}
{% else %}
Aucun projet. Créer le premier.
{% endif %} {% endblock %}