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

Recent Note:

{{recent_note.text}}

{% 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

{% if customer.business %} {% else %} {% endif %}
Name Business Type Financial Number Actions

{{customer.business.name}}

{{customer.business.business_type}}

{{customer.business.financial_number}}

No Business For {{customer.user.first_name}} {{customer.user.last_name}}
{% endblock content %}