1

私は検索結果にdjangoの無限のページ付けを使用していますが、上部に次のようなメッセージを作成したいと思います。

showing 20 results of 124

またはさらに良い:

showing results 20 to 40 of 124

無限のページネーションドキュメントで現在の結果数を取得する方法がわかりません。これをどのように行いますか?

4

4 に答える 4

1

人々はこれを過度に複雑にする傾向があります。current_start_index および current_end_index 関数がソースにかなり詳しく記載されていることがわかりました (ただし、実際のドキュメントにはありません)。

それらを使用してそれを達成する方法を次に示します。

{{ pages.current_start_index }} から {{ pages.current_end_index }} までの {{ pages.total_count }} 件の結果

これが誰かに役立つことを願っています:D

于 2014-10-13T13:24:43.233 に答える
0

既存のタグを使用して、独自のカスタム タグを作成しました。

from endless_pagination import (
    settings,
    utils,
)


@register.inclusion_tag("endless_pagination/show_more.html", takes_context=True)
def show_more_with_counts(context, per_page_count, total_count, first_page_count=0,
    verb='enteries', loading=settings.LOADING, show_total_in_end=True):
    # This template tag could raise a PaginationError: you have to call
    # *paginate* or *lazy_paginate* before including the showmore template.
    data = utils.get_data_from_context(context)
    page = data['page']
    # show the template only if there is a next page
    if page.has_next():
        request = context['request']
        page_number = page.next_page_number()
        # Generate the querystring.
        querystring_key = data['querystring_key']
        querystring = utils.get_querystring_for_page(
            request, page_number, querystring_key,
            default_number=data['default_number'])
        curr_page_num = int(request.GET.get(querystring_key, 1))
        if curr_page_num == 1:
            if first_page_count:
                start = first_page_count + 1
            else:
                start = per_page_count + 1
        else:
            if first_page_count:
                start = (curr_page_num * per_page_count) - first_page_count
            else:
                start = (curr_page_num * per_page_count) + 1
        end = (per_page_count + start) - 1
        if end > total_count:
            end = total_count
        label = 'Load %(start)s to %(end)s of %(total)s %(verb)s' % {
            'start': start, 'end': end, 'total': total_count, 'verb': verb}
        return {
            'label': label,
            'loading': loading,
            'path': data['override_path'] or request.path,
            'querystring': querystring,
            'querystring_key': querystring_key,
            'request': request,
            'show_total_in_end': show_total_in_end,
        }
    else:
        if total_count > 0:
            return {
                'label': 'Showing %(start)s of %(end)s %(verb)s' % \
                    {'start': total_count, 'end': total_count, 'verb': verb},
                'show_total_in_end': show_total_in_end,
            }
        else:
            return {}

また、次のshow_more.htmlテンプレートがあります。

{% load i18n %}
{% if querystring %}
    <div class="endless_container">
        <a class="endless_more" href="{{ path }}{{ querystring }}"
            rel="{{ querystring_key }}" style="font-size: 11px; color: #c13923;">{{ label }}</a>
        <div class="endless_loading" style="display: none;">{{ loading|safe }}</div>
    </div>
{% elif show_total_in_end %}
    <a href="#" style="text-decoration: none; color: #999; cursor:default; font-size: 11px;" onclick='return false;'>{{ label }}</a>
{% endif %}

使い方:

{% show_more_with_counts 10 qs_count verb='users' %}
# it will say `Load 1 to 10 of 100 users` for first page
# it will say `Load 11 to 20 of 100 users` for 2nd page, and so on

per_page_count、クエリセットまたはリスト内のオブジェクトの総数total_count、および使用するを渡す必要がありverbます。

于 2013-10-10T18:00:08.597 に答える
0

私は次のようにします:

データベースからのエントリの総数をカウントし、テンプレートに渡します124。次に、paginate limit を使用して、ページあたりの合計エントリ数を制限します。それを数えて、好きなように見せてください。

于 2013-03-14T09:17:07.890 に答える