{% extends 'base.html' %} {% load static %} {% block title%}Customer Details{% endblock %} {% block content %}

Customers List

Date : {{myDate}}

{% for customer in customers %} {% endfor %}
S.N Name Email Conact No Created At
{{customer.id}} {{customer.name}} {{customer.email}} {{customer.contact}} {{customer.date_created}}
{% endblock %}