{% extends "main.html" %} {%load static%} {% block title %}My Projects{% endblock %} {% block content %}

Customers

{% for customer in customers %} {% endfor %}
Customer User Status Business Actions

{{customer.user.first_name}} {{customer.user.last_name}}

{{customer.user.username}}

{{customer.status}}

{% if customer.business_set.all %} {% for business in customer.business_set.all %}

{{business.name}}

{% endfor %} {% else %}

None

{% endif %}
{% endblock content %}