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

Customer List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if customers %} {% for customer in customers %} {% for c in customer.get_cust_info %} {% endfor %} {% endfor %}
ID TYPE NAME CONTACT APP ACCESS Receive Communication STATUS MYOB SYNCH Note Actions
{{ customer.get_is_individual_display }} {% if customer.get_is_individual_display == 'Individual' %}{{ customer.first_name }} {{ customer.last_name }} {% else %} {{ customer.company_name }} {% endif %} {% if customer.user.app_access == 1 %} Yes {% else %} No {% endif %} {% if customer.user.is_communication == 1 %} Yes {% else %} No {% endif %} {% if customer.get_status == 'Active' %} {{ customer.get_status }} {% else %} {{ customer.get_status }} {% endif %} Select
-
Additional Contact {{ c.first_name }} {{ c.last_name }}
{{c.position}}
{% if c.user.app_access == 1 %} Yes {% else %} No {% endif %} {% if c.user.is_communication == 1 %} Yes {% else %} No {% endif %} - - - Select
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% for customer in customers %} {% endfor %} {% endblock script%}