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

My Notes

{% if customer.status == 'Active' %}

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

{{customer.customer_id}}

{% endif %} {% if customer.status == 'Suspended' %}

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

{{customer.customer_id}}

{% endif %} {% if customer.status == 'Terminated' %}

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

{{customer.customer_id}}

{% endif %}

First Name: {{customer.user.first_name}}

Last Name: {{customer.user.last_name}}

Email: {{customer.user.email}}

{% if customer.personal_website %}

Personal Website: {{customer.personal_website}}

{% endif %} {% if customer.status == 'Active' %}

Status: {{customer.status}}

{% endif %} {% if customer.status == 'Suspended' %}

Status: {{customer.status}}

{% endif %} {% if customer.status == 'Terminated' %}

Status: {{customer.status}}

{% endif %}

Reference: {{customer.reference}}

Businesses

{% for business in customer.businesses.all %} {% endfor %}
Name Business Type Financial Number Actions

{{ business.name }}

{{ business.business_type }}

{{ business.financial_number }}

{% if latest_statuses_time_ago %} {% else %} {% endif %}
{% endblock content %}