{% extends "base.html" %} {% block title %}Customers - Northwind Traders{% endblock %} {% block content %}
| ID | Company Name | Contact Name | Country | Phone | Actions |
|---|---|---|---|---|---|
| {{ customer['CustomerID'] }} | {{ customer['CompanyName'] }} | {{ customer['ContactName'] or '-' }} | {{ customer['Country'] or '-' }} | {{ customer['Phone'] or '-' }} |
{% if search %}No customers found matching "{{ search }}"{% else %}No customers in database. Create your first customer!{% endif %}
{% endif %}