1

Django contrib.comments 是否有任何现有的分页解决方案?

我需要的只是一个简单的分页 django 注释,用于我使用的基本博客应用程序(来自 Django 基本应用程序),使用简单的 has_previous 和 has_next

我已经复制了 django.contrib.comments 并尝试修改代码但没有成功。代码很难理解(django/contrib/comments/templatetags/comments.py),因为它由 Node 和 Parser 组成

这是我用于博客应用程序的 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模板标签 :)

提前致谢

4

2 回答 2

3

我认为 django-pagination 可能是您正在寻找的。

http://code.google.com/p/django-pagination/(提供截屏视频)

于 2009-06-22T17:22:43.730 回答
0

Django 也有一个内置的分页系统

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

于 2012-01-18T02:51:11.400 回答