{% extends 'base.html' %} {% load static %} {% block title %}PVs du client - {{ client.nom }} - Contrôle Technique{% endblock %} {% block content %}

{{ client.nom }}

{{ client.adresse|default:"Adresse non renseignée" }} {% if client.ville %}, {{ client.ville }} {{ client.code_postal }}{% endif %}

{% if client.email %} {{ client.email }} {% endif %} {% if client.telephone %} | {{ client.telephone }} {% endif %}

Total: {{ pvs|length }} PV(s)
PVs finaux

{{ stats.pvs_finaux|default:0 }}

Brouillons

{{ stats.pvs_brouillon|default:0 }}

Cette année

{{ stats.pvs_annee|default:0 }}

Dernier PV
{% with dernier=dernier_pv %} {% if dernier %} {{ dernier.date_visite|date:"d/m/Y" }} {% else %} - {% endif %} {% endwith %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Procès-verbaux de {{ client.nom }}
Nouveau PV
{% for pv in pvs %} {% empty %} {% endfor %}
N° PV Date Type Objet du contrôle Lieu Statut Actions
#{{ pv.numero }} {{ pv.date_visite|date:"d/m/Y" }} {{ pv.date_visite|date:"H:i" }} {{ pv.type_pv.nom|default:"-" }} {{ pv.objet_controle.nom_projet|truncatechars:50 }} {{ pv.lieu|truncatechars:30|default:"-" }} {% if pv.statut == 'final' %} Final {% else %} Brouillon {% endif %}

Aucun procès-verbal trouvé pour ce client

Créer un premier PV
{% if pvs.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% if debug %} {% endif %} {% endblock %}