質問

Django contrib.commentsの既存のページネーションソリューションはありますか?

必要なのは、単純なhas_previousおよびhas_next

django.contrib.commentsをコピーし、コードを変更しようとしましたが、成功しませんでした。ノードとパーサーで構成されているため、コードを理解するのはかなり困難です(django / contrib / comments / templatetags / comments.py)

ブログアプリケーションに使用したcomments.htmlテンプレートは次のとおりです。

{% load comments markup %}
{% get_comment_list for object as comment_list %}
    {% if comment_list %}
    <div class="comments g_7 left">
        <a name="comments"></a>
        <div class="subtitle">Comments</div>
        {% for comment in comment_list %}
            {% if comment.is_public %}
            <div class="comment g_6" id="c{{ comment.id }}">
                <div class="comment_name g_6">
                <div class="comment_count right">
                    <a name="c{{ comment.id }}" href="{{ comment.get_absolute_url }}" {% ifnotequal comment.person_name null %}title="Permalink to {{ comment.person_name }}'s comment"{% endifnotequal %} class="comment_count">{{ forloop.counter }}</a></div>
                    Wrote by <strong>{% if comment.user_url %}<a href="{{ comment.user_url }}">{{ comment.user_name }}</a>{% else %}{{ comment.user_name }}{% endif %}</strong> on {{ comment.submit_date|date:"F j, Y" }} - {{ comment.submit_date|date:"P" }} 
                </div>
                <div class="comment_body g_6">{{ comment.comment|urlizetrunc:"60"|safe }}</div>
            </div>
            {% endif %}
        {% endfor %}

        <div class="clear"></div>
    </div>
    {% else %}
        No comments yet.
    {% endif %}

問題は get_comment_list テンプレートタグにあると思います:)

事前に感謝

役に立ちましたか?

解決

django-paginationはあなたが探しているものだと思います。

http://code.google.com/p/django-pagination/(スクリーンキャストが利用可能)

他のヒント

Djangoにはページネーションシステムも組み込まれています

https://docs.djangoproject.com/en/dev/topics/pagination /

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top