{% extends 'layouts/base.html' %} {% block title %}Suite Consultance - Détails du client{% endblock %} {% block content %}

Détails du client: {{ client.client_name }}

Retour au CRM
Informations du client
Nom

{{ client.client_name }}

Email

{{ client.email or 'Non spécifié' }}

Téléphone

{{ client.telephone or 'Non spécifié' }}

Adresse

{{ client.adresse or 'Non spécifiée' }}

Détails du projet
Nom du projet

{{ client.project_name }}

Type de projet

{{ client.project_type or 'Non spécifié' }}

Date limite

{{ client.deadline or 'Non spécifiée' }}

Budget

{{ client.budget or 'Non spécifié' }}

Description du projet

{{ client.project_description or 'Aucune description disponible' }}

Fonctionnalités
{% if client.features %}
    {% for feature in client.features %}
  • {{ feature.description }}
  • {% endfor %}
{% else %}

Aucune fonctionnalité spécifiée

{% endif %}
Conditions de paiement

{{ client.payment_terms or 'Non spécifiées' }}

Informations de contact

{{ client.contact_info or 'Non spécifiées' }}

Informations additionnelles

{{ client.additional_info or 'Aucune information additionnelle' }}

Documents liés
Propositions
    {% if client.propositions %} {% for proposition in client.propositions %}
  • {{ proposition.name }}
  • {% endfor %} {% else %}
  • Aucune proposition
  • {% endif %}
Devis
    {% if client.devis %} {% for devis in client.devis %}
  • {{ devis.name }}
  • {% endfor %} {% else %}
  • Aucun devis
  • {% endif %}
Actions
{% endblock %}