{% extends 'marketing/base.html' %} {% load static %} {% load paginate %} {% block content %} {{ block.super }}
{% csrf_token %}
Filters
Clear
Contacts - {% if show_pageitems %} {% show_pageitems %}{% else %}{{contacts|length}}{% endif %}
{% if per_page %} {% paginate per_page contacts %} {% else%} {% paginate 10 contacts %} {% endif %} {% for contact in contacts %} {% empty %} {% endfor %}
S. No Name Email Company Created by Created On Related Contact List Actions
{{ forloop.counter }} {{ contact.name }} {{ contact.email }} {{ contact.company_name }} {{ contact.created_by }} {{ contact.created_on_arrow }} {% for contact_list in contact.contact_list.all %} {{contact_list.name}} {% empty %} None {% endfor %}
There are no records
{% show_pages %}
Bounced Contacts - {{bounced_contacts|length}}
{% if per_page %} {% paginate per_page bounced_contacts %} {% else%} {% paginate 10 bounced_contacts %} {% endif %} {% for contact in bounced_contacts %} {% empty %} {% endfor %}
S. No Name Email Company Created by Created On Related Contact List Actions
{{ forloop.counter }} {{ contact.name }} {{ contact.email }} {{ contact.company_name }} {{ contact.created_by }} {{ contact.created_on_arrow }} {% for contact_list in contact.contact_lists %} {{contact_list.1}} {% empty %} None {% endfor %}
There are no records
    {% show_pages %}
Failed Contacts - {{failed_contacts|length}}
{% if per_page %} {% paginate per_page failed_contacts %} {% else%} {% paginate 10 failed_contacts %} {% endif %} {% for contact in failed_contacts %} {% empty %} {% endfor %}
S. No Name Email Company Created by Created On Related Contact List Actions
{{ forloop.counter }} {{ contact.name }} {{ contact.email }} {{ contact.company_name }} {{ contact.created_by }} {{ contact.created_on_arrow }} {% for contact_list in contact.contact_lists %} {{contact_list.1}} {% empty %} None {% endfor %}
There are no records
    {% show_pages %}

{% endblock %} {% block js_block %} {% endblock js_block %}