Django paginator页面范围不显示所有数字

时间:2016-12-13 22:40:32

标签: python django django-pagination

我在我的网站上有一个分页,但它向我显示每个页面,如1-19,我只想显示5页。enter image description here

我该怎么做?

views.py

    paginator = Paginator(object_list, new_number_of_list)

    page = request.GET.get('page')

    try:
        Items = paginator.page(page)
    except PageNotAnInteger:
        Items = paginator.page(1)
    except EmptyPage:
        Items = paginator.page(paginator.num_pages)

    variables = RequestContext(request, {"Items": Items,
                                         "ForItemCount": ForItemCount,
                                         "page": page,
                                         })
    return render(request, 'templates/Core/resource_base.html',
                           variables)

my pagination.html

<div class="pagination p1">
  <span class="step-links">
    <ul>

          {% for l in  Items.paginator.page_range %}
            <li><a href="?page={{forloop.counter}}">{{forloop.counter}}</a></li>
          {% endfor %}



    </ul>
  </span>
</div>

3 个答案:

答案 0 :(得分:8)

可以使用的另一种快速解决方案(例如+和 - 5限制):

{% for l in  Items.paginator.page_range %}
    {% if l <= Items.number|add:5 and l >= Items.number|add:-5 %}
        <li><a href="?page={{forloop.counter}}">{{forloop.counter}}</a></li>
    {% endif %}
{% endfor %}

答案 1 :(得分:4)

您已经拥有{{ forloop.counter }},可以使用它将其限制为五个。

      {% for l in  Items.paginator.page_range %}
        {% if forloop.counter < 5 %}
            <li><a href="?page={{forloop.counter}}">{{forloop.counter}}</a></li>
        {% endif %}
      {% endfor %}

这是另一种解决方案,如果您感兴趣,可能会为您提供更多选项:Django Pagination Display Issue: all the page numbers show up

最后,这是一个非常好的教程,可以快速了解django开箱即用的分页:https://simpleisbetterthancomplex.com/tutorial/2016/08/03/how-to-paginate-with-django.html

答案 2 :(得分:1)

查看https://medium.com/@sumitlni/paginate-properly-please-93e7ca776432是否有帮助。代码使用10表示“邻居”,但是在使用标记时可以将其更改为5。