{% extends 'base.html' %} {% block title %}Create Customer{% endblock title %} {% block page_content %} {% include 'messages.html' %}
Add New Customer
{% csrf_token %} {{ form.as_p }}
10 Most Recent Customers
{% 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 %}