{% extends "base.html" %} {% load i18n static crispy_forms_filters%} {% block title %}{{ _("View Customer") }}{% endblock title %} {% block content %} {% include 'modal/delete_modal.html' %}

{% trans 'Customer details' %}

{{ customer.additional_info }}

{{ customer.created|timesince}}

{% trans 'Invoices' %}

{{invoices.count}}

{% trans 'Quotations' %}

{{estimates.count}}

{% trans 'Default Address' %}

{{ _("Address") }}

{{ customer.address_1}}

{% trans 'Email' %}
{{ customer.email }}
{% trans 'Phone Number' %}
{{ customer.phone }}
{% for note in notes %} {% endfor %}
{{ _("Notes")|upper }}
{{note.note}}

{{ _("Cars") }} ({{ total }})

ORDER TOTAL PAYMENT STATUS FULFILMENT STATUS DELIVERY TYPE DATE
#2453 $87 Paid Order Fulfilled Cash on delivery Dec 12, 12:56 PM
{% include 'partials/pagination.html' %}
{% endblock %}