{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("View Customer") }}{% endblock title %} {% block content %}

{% trans 'Customer details' %}

{{ customer.first_name }} {{ customer.middle_name }} {{ customer.last_name }}

{{ customer.created|timesince}}

{% trans 'Visits' %}

23

{% trans 'Calls' %}

9

{% trans 'Quotations' %}

5

{% trans 'Default Address' %}

{{ _("Address") }}

{{ customer.address}}
Riyadh,
Saudi Arabia

{% trans 'Email' %}
{{ customer.email }}
{% trans 'Phone Number' %}
{{ customer.phone_number }}

{{ _("Cars") }} ({{ estimates.count }})

{% for estimate in estimates %} {% endfor %}
ORDER TOTAL PAYMENT STATUS FULFILMENT STATUS DELIVERY TYPE DATE
#{{ estimate.estimate_number }} $87 {% if estimate.is_draft %} {% trans 'Draft' %} {% elif estimate.is_review %} {% trans 'Review' %} {% elif estimate.is_approved %} {% trans 'Approved' %} {% else %} {% trans 'Paid' %} {% endif %} Order Fulfilled Cash on delivery Dec 12, 12:56 PM
{% endblock %}