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

Recent Note:

Send an Email to Salim.

{{business.name}}

Name: {{business.name}}

Email: {{business.email}}

VAT: {{business.vat}}

Commercial Registration: {{business.commercial_registration}}

Phone Number: {{business.phone_number}}

Website: {{business.website}}

Business Type: {{business.business_type}}

Related Customer: {% for customer_profile in business.customerprofile_set.all %} {{ customer_profile.user.first_name }} {{customer_profile.user.last_name}} {% if not forloop.last %}, {% endif %} {%endfor%}

USERS ACTIVITY

{% for latest in latest_statuses %}
user profile

{{latest.staff.first_name}} {{latest.staff.last_name}}

{{latest.time}}

{{latest.text}}

{% endfor %}
{% endblock content %}