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

Recent Note:

Send an Email to Salim.

Customers

First Name

Last Name

User

Status

Business

Actions
{% for customer in customers %}

{{customer.user.first_name}}

{{customer.user.last_name}}

{{customer.user.username}}

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

{{customer.status}}

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

{{customer.status}}

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

{{customer.status}}

{% endif %}

{{customer.business}}

{% endfor %}

USERS ACTIVITY

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