{% extends "./template.html" %} {% block content %} {% load static %}

Customer Information

{% csrf_token %}
{% if profile_picture %}
{{ organisation_information_form.update_profile_picture }} {% else %}
{{ organisation_information_form.update_profile_picture }} {% endif %} {% if customer_permissions > 1 %} {% endif %}
{{ customer_information_form.customer_title }}
{{ customer_information_form.customer_first_name }}
{{ customer_information_form.customer_last_name }}
{{ customer_information_form.customer_email }}
{% if not customer_results.organisation_id == Null %} {% endif %} {% if customer_permissions > 1 %}
{% endif %}

Campus Contact Information

{% if add_campus_results and assign_campus_to_customer_permission > 1 and customer_results.organisation_id %}
{% elif assign_campus_to_customer_permission > 1 and not customer_results.organisation_id %} New Campus {% endif %} {% if customer_campus_results %} {% if customer_permissions == 4 or administration_permission %} {% endif %} {% for row in customer_campus_results %} {% if customer_permissions == 4 or administration_permission %} {% endif %} {% endfor %}
Campus nickname Campus's Phone Campus's Fax Campus Suburb Campus Region Campus CountryDelete
{{ row.campus_nickname }} {{ row.campus_phone }} {{ row.campus_fax }} {{ row.campus_suburb }} {{ row.campus_region_id }} {{ row.campus_country_id }}Delete
{% elif campus_results %} {% if customer_permissions == 4 or administration_permission %} {% endif %} {% for row in campus_results %} {% if customer_permissions == 4 or administration_permission %} {% endif %} {% endfor %}
Campus nickname Contact's Phone Contact's Fax Campus Suburb Campus Region Campus CountryDelete
{{ row.campus_id }} {{ row.customer_phone }} {{ row.customer_fax }} {{ row.campus_id.campus_suburb }} {{ row.campus_id.campus_region_id }} {{ row.campus_id.campus_country_id }}Delete
{% else %} {% endif %}

Contact History

Loading...

Email History

Loading...

Document Uploads

Loading...

Customer Quotes

New Quote {% if quote_results %} {% for row in quote_results %} {% endfor %}
Quote Title Valid Till Quote Stage
{{ row.quote_title }} {{ row.quote_valid_till }} {{ row.quote_stage_id }}
{% endif %}

Associated Projects & Tasks

{% if customer_permissions > 1 %}

Actions


{% endif %}

Assigned Projects

{% if project_results %} {% for row in project_results %} {% endfor %}
Project ID Project Name Project End Date Project Status
PRO{{ row.project_id }} {{ row.project_name }} {{ row.project_end_date }} {{ row.project_status }}
{% else %}

Sorry. There are currently no projects for this customer

{% endif %}

Assigned Tasks

{% if task_results %} {% for row in task_results %} {% endfor %}
Task ID Task Name Task End Date Task Status
TASK{{ row.task_id }} {{ row.task_short_description }} {{ row.task_end_date }} {{ row.task_status }}
{% else %}

Sorry. There are currently no tasks for this customer.

{% endif %}
{% if opportunity_results %}

Customer Opportunities

{% for row in opportunity_results %} {% endfor %}
Opportunity Name Opportunity Stage Opportunity End Date
{{ row.opportunity_name }} {{ row.opportunity_stage_id }} {{ row.opportunity_expected_close_date }}
{% endif %} {% if customer_permissions == 4 %}

DANGER ZONE!

Delete Customer
{% endif %} {% endblock %}