{% extends 'base.html' %} {% block title %}Customers{% endblock title %} {% block page_content %} {% include 'messages.html' %}
{% if customers|length > 0 %} {% for customer in customers %} {% endfor %}
#NamePhoneEmail
{{ customer.num }}. {{ customer.name }} {{ customer.primary_phone }} {{ customer.email }}
{% else %}
No customers have been added yet
{% endif %}
{% endblock page_content %}