{% extends 'base.html' %} {% block title %}Customers | Cilvera{% endblock title %} {% block content %}

Customers {{ page_obj.paginator.count }}

{% for customer in customers %} {% empty %} {% endfor %}
Name Company Email Owner
{{ customer.full_name }} {{ customer.company_name|default:'-' }} {{ customer.email|default:'-' }} {{ customer.owner|default:'-' }}
No customers found.
{% include 'shared/pagination.html' %}
{% endblock content %}