{% extends "base.html" %} {% load i18n static crispy_forms_filters custom_filters %} {% block title %} {{ _("View Customer") }} {% endblock title %} {% block content %} {% include 'modal/delete_modal.html' %} {% include 'components/note_modal.html' with content_type="customer" slug=customer.slug %}
{% trans "Member since:" %} {{ customer.created|date:"d M Y" }}
{{ invoices.count }}
{{ estimates.count }}
{{ customer.address|default:_("N/A") }}
| {% trans 'Note' %} | {% trans 'Date' %} | ||
|---|---|---|---|
| {{ note.note|default_if_none:""|linebreaksbr }} | {{ note.created|date:"d M Y" }} | ||
| {% trans 'No notes found for this customer.' %} | |||
{% trans 'No leads found for this customer.' %}
{% endfor %}{% trans 'No opportunities found for this customer.' %}
{% endfor %}{% trans 'No estimates found for this customer.' %}
{% endfor %}