{% extends 'base.html' %} {% load static %} {% block title %}Liste des procès-verbaux - Contrôle Technique{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Procès-verbaux de contrôle
Total : {{ pvs|length }} PV(s)
{% for pv in pvs %} {% empty %} {% endfor %}
N° PV Type Client Date visite Lieu Participants Contrôles Statut Actions
PV-{{ pv.id|stringformat:"04d" }} {{ pv.type_pv.code }} {{ pv.type_pv.libelle|truncatechars:20 }}
{{ pv.client.nom }} {{ pv.client.email|default:"-" }}
{{ pv.date_visite|date:"d/m/Y" }}
{{ pv.date_visite|date:"H:i" }}
{{ pv.lieu|truncatechars:30 }} {% with count=pv.participants.count %} {{ count }} {% endwith %} {% with count=pv.controles.count %} {{ count }} {% endwith %} {% if pv.statut == 'brouillon' %} Brouillon {% elif pv.statut == 'signe' %} Signé {% elif pv.statut == 'envouye' %} Envoyé {% elif pv.statut == 'archive' %} Archivé {% else %} {{ pv.statut }} {% endif %}
{% if pv.statut == 'BROUILLON' %} {% endif %}
Aucun procès-verbal trouvé

Commencez par créer votre premier procès-verbal

Créer un PV
{% endblock %} {% block extra_js %} {% endblock %}