{% extends 'store/base.html' %} {% block content %}
{% for customer in customers %} {% endfor %}
# First Name Last Name Address Email Phone Loyalty Points Actions
{{ forloop.counter }} {{ customer.first_name }} {{ customer.last_name }} {{ customer.address }} {{ customer.email }} {{ customer.phone }} {{ customer.loyalty_points }} Edit Delete
{% endblock %}