{% extends "base.html" %} {% block title %}Customers{% endblock %} {% block content %}

👥 Customer List

âž• Add Customer
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if customers %}
    {% for customer in customers %}
  • {{ customer.first_name }} {{ customer.last_name }} {{ customer.phone_number }}
  • {% endfor %}
{% else %}
No customers found.
{% endif %}
{% endblock %}