{% extends "admin/base_site.html" %} {% block title%}Download Page{%endblock%} {% block breadcrumbs %} {% endblock %} {% block content %} Download Page
{% comment %}
{% endcomment %} {% if request.GET.source %} {% endif %}
{% for block in custom_data %} {% endfor %}
FirstName LastName Email Phone Sources Updated Date
{{ block.firstname }} {{ block.lastname }} {{ block.email }} {{ block.phone }} {{ block.target_name }} {{ block.updated_date }}
{% if page_obj.has_previous %} Previous {% else %} Previous {% endif %} {% with total_pages=page_obj.paginator.num_pages current=page_obj.number %} {% for num in page_obj.paginator.page_range %} {% if num == 1 or num == total_pages or num >= current|add:"-2" and num <= current|add:"2" %} {% if num == current %} {{ num }} {% else %} {{ num }} {% endif %} {% elif num == current|add:"-3" or num == current|add:"3" %} ... {% endif %} {% endfor %} {% endwith %} {% if page_obj.has_next %} Next {% else %} Next {% endif %}
{% endblock %}