{% extends "base.html" %} {% load humanize %} {% 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") }}
| {{ _("Note") }} | {{ _("Created On") }} | {{ _("Last Updated") }} | |
|---|---|---|---|
| {{ note.note }} | {{ note.created|naturalday|capfirst }} | {{ note.updated|naturalday|capfirst }} | {% if note.created_by == request.user %} {{ _("Update") }} {% endif %} |
{% trans 'No leads found for this customer.' %}
{% endfor %}{% trans 'No opportunities found for this customer.' %}
{% endfor %}{% trans 'No estimates found for this customer.' %}
{% endfor %}