{% extends "layout/default.html" %} {% load i18n %} {% block title %}{% translate "Customer Details" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Customers" %} {% endblock %} {% block breadcumbfirst %} Manage Customers {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Customer Details

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% if customer.is_individual == 1 %} Individual {% endif %} {% if customer.is_individual == 0 %} Company {% endif %}
{% if customer.is_active %} Active {% else %} Inactive {% endif %}
{% if customer.is_individual == 0 %}
{{customer.company_name}}
{% endif %}
{{customer.first_name }}
{{customer.last_name }}
{{customer.phone1 }}
{{customer.email }}
{{customer.abn }}
{% if customer_info %} {% for cust in customer_info %}

Additional Contact

{{cust.first_name}}
{{cust.last_name}}
{{cust.phone1}}
{{cust.email}}
{{cust.position}}
{% if cust.user.app_access == 1 %} Yes {% endif %} {% if cust.user.app_access == 0 %} No {% endif %}
{% if cust.user.is_communication == 1 %} Yes {% endif %} {% if cust.user.is_communication == 0 %} No {% endif %}
{% endfor %} {% endif %}
{{customer.street }}
{{customer.city }}
{% if customer.state == 'ACT' %} Australian Capital Territory {% endif %} {% if customer.state == 'NSW' %} New South Wales {% endif %} {% if customer.state == 'NT' %} Northern Territory {% endif %} {% if customer.state == 'QLD' %} Queensland {% endif %} {% if customer.state == 'SA' %} South Australia {% endif %} {% if customer.state == 'TAS' %} Tasmania {% endif %} {% if customer.state == 'VIC' %} Victoria {% endif %} {% if customer.state == 'WA' %} Western Australia {% endif %}
{{customer.post_code }}
Australia
{% endblock content %} {% block script %} {% endblock script %}