{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "Lead List" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Leads" %} {% endblock %} {% block breadcumbfirst %} Manage Leads {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block addcss %} {% endblock %} {% block content %}

Lead List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if customers %} {% for customer in customers %} {% endfor %}
ID Lead Info CONTACT Lead Source Business Type Products Last Note Note Actions
{% if customer.company_name %}{{ customer.company_name }}
{% endif %}{{ customer.first_name }} {{ customer.last_name }}
{% if customer.products %} {% for product in customer.product_objects %} {{ product.product_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% else %} - {% endif %}
{% if customer.customer_id == None %} {% else %} Lead Converted {% endif %} {% if customer.note_history %} {% endif %} {{ customer.created_at|date:'d-m-Y h:i:s A' }} Select
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% endblock script%}