{% extends "homepage.html" %} {% block content %}

List of Clients


{% if all_clients %} {% for client in all_clients %} {% endfor %}
Name of Client project associated phone no. email
{{ client.name }} {{ client.project_name }} {{ client.phno }} {{ client.email }}
{% else %}

no clients

{% endif %}
{% endblock %}