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

Customers

+ New Customer
{% if search %} Clear {% endif %}
{% if customers %}
{% for customer in customers %} {% endfor %}
ID Company Name Contact Name Country Phone Actions
{{ customer['CustomerID'] }} {{ customer['CompanyName'] }} {{ customer['ContactName'] or '-' }} {{ customer['Country'] or '-' }} {{ customer['Phone'] or '-' }}
View Edit
{% else %}

{% if search %}No customers found matching "{{ search }}"{% else %}No customers in database. Create your first customer!{% endif %}

{% endif %}
Showing {{ customers|length }} customer(s)
{% endblock %}