如果我包括,那么它在同一页上paginator
打印多个。paginator
因为我包括在forloop
. 我该如何解决这个问题?请帮忙
----------------------
{% autopaginate recipes %}
{% for recipe in recipes %}
{{ forloop.counter }}
{% endfor %}
-----------
这是我的完整代码。
{% with followers=current_user.get_profile.get_following.all %}
{% for follower in followers %}
{% with recipes=follower.recipe_set.all %}
{% for recipe in recipes %}
{{ forloop.counter }}
{% endfor %}
{% endwith %}
{% endfor %}
{% endwith %}
结果-> 1 2 3 1 2 3 ...... 50
。应该是53
。所以我可以轻松使用paginator
谢谢