{% extends 'base.html' %} {% block title %}Customers{% endblock %} {% block content %} {% if error %}
{{ error }}
{% endif %}
Add New Customer
{% if can_edit() %}
{% else %}

You don't have permission to add customers.

{% endif %}
Customer List {{ customers|length }}
{% for c in customers %} {% else %} {% endfor %}
NameContactContracts
{{ c.name }} {{ c.contact or '–' }} {{ c.contract_count }}
{% if c.contract_count == 0 %}
{% endif %}
No customers yet
{% endblock %} {% block scripts %} {% endblock %}