{% extends 'ssh_manager/base.html' %} {% load static %} {% block content %}

Müşteri Yönetimi {% if filter_type == 'individual' %} - Bireysel Müşteriler {% elif filter_type == 'corporate' %} - Kurumsal Müşteriler {% endif %}

Bireysel ve kurumsal müşteri profilleri
{% for customer in customers %}
{{ customer.get_display_name }}
{% if customer.customer_type == 'corporate' %}Kurumsal{% else %}Bireysel{% endif %}
{% if customer.email %}
{{ customer.email }}
{% endif %} {% if customer.phone %}
{{ customer.phone }}
{% endif %} {% if customer.customer_type == 'corporate' and customer.tax_number %}
Vergi No: {{ customer.tax_number }}
{% endif %}
{{ customer.project_set.count }} proje {% if customer.notes %}
{{ customer.notes|truncatechars:50 }}
{% endif %}
{% empty %}

Henüz müşteri kaydı bulunmuyor

{% endfor %}
{% endblock %}