{% extends "base.html" %} {% block title %}{{ company.name }} — GMAO Collège{% endblock %} {% block content %}
| Nom commercial | {{ company.trade_name }} |
|---|---|
| SIRET | {{ company.siret }} |
| Spécialité | {{ company.specialty }} |
| Contact | {{ company.contact_name or '—' }} |
| {{ company.contact_email or '—' }} | |
| Téléphone | {{ company.contact_phone or '—' }} |
| Note | {% for i in range(company.rating) %}⭐{% endfor %} |
| Statut | {% if company.is_active %}Active{% else %}Inactive{% endif %} |
| Tech 1: {{ company.tech1_name }} | {{ company.tech1_phone or '' }} {% if company.tech1_email %} {{ company.tech1_email }}{% endif %} |
|---|---|
| Tech 2: {{ company.tech2_name }} | {{ company.tech2_phone or '' }} {% if company.tech2_email %} {{ company.tech2_email }}{% endif %} |
| Tech 3: {{ company.tech3_name }} | {{ company.tech3_phone or '' }} {% if company.tech3_email %} {{ company.tech3_email }}{% endif %} |
Aucun contact technicien renseigné.
{% endif %}| Lot | Catégories | Interventions |
|---|---|---|
| {{ lot.name }} | {{ lot.categories.count() }} | {{ lot.interventions.count() }} |
Aucun lot assigné à cette entreprise.
{% endif %}| # | Titre | Type | Statut | Date |
|---|---|---|---|---|
| #{{ interv.id }} | {{ interv.title }} | {% if interv.type == 'curatif' %}Curatif{% else %}Préventif{% endif %} | {{ interv.status|format_status }} | {{ interv.requested_at|date_fmt }} |
Aucune intervention pour cette entreprise.
{% endif %}