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

Recent Note:

Send an Email to Salim.

{% 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.first_name}}

Last Name: {{customer.last_name}}

Email: {{customer.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}}

Business:

Name

Business Type

Financial number

Actions

{% if customer.business %}

{{customer.business.name}}

{{customer.business.business_type}}

{{customer.business.financial_number}}

{% endif %}

USERS ACTIVITY

{% include 'recent-activities.html' %}
{% endblock content %}