{% extends 'layout/default.html' %} {% load i18n %} {% load querystring %} {% 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 %}
Lead Info CONTACT Sales Agent Business Type Products Status Note Actions
{% if 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 %} {% if customer.has_any_pdf_sent %} {% for product in allproducts %} {% if product.id in customer.product_spec_objects or product.id in customer.product_user_manual_objects %} {% if product.id in customer.product_spec_objects %} {% endif %} {% if product.id in customer.product_user_manual_objects %} {% endif %} {% endif %} {% endfor %}
{{ product.product_name }}
{% endif %}
{{ customer.created_at|date:'d-m-Y h:i:s A' }} Select
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% for customer in customers %} {% endfor %} {% endblock script%}