{% extends 'sales/base.html' %} {% load static %} {% load paginate %} {% load thumbnail %} {% block content %}
{% csrf_token %}
Filter Contacts
Clear
Blocked Domain - {% if show_pageitems %} {% show_pageitems %}{% else %} {{ blocked_domains|length }}{% endif %}
{% if blocked_domains|length > 0 %} {% endif %} {% if per_page %} {% paginate per_page blocked_domains %} {% else %} {% paginate 10 blocked_domains %} {% endif %} {% for domain in blocked_domains %} {% endfor %}
ID Domain Created by Created On Actions
{{ forloop.counter }} {{ domain.domain }} {% if domain.created_by %} {% if domain.created_by.profile_pic %} {% thumbnail domain.created_by.profile_pic "40x40" crop="center" as im %} {% endthumbnail %} {% else %} {% endif %} {% else %} {% endif %} {{ domain.created_on_arrow }} {% if request.user.role == 'ADMIN' or reques.user.is_superuser %} {% endif %}
{%ifequal blocked_domains|length 0%}
No Domains Found
{%endifequal%}
{% show_pages %}

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