この例に従って、
私は自分のモデルの1つでそれを使用しようとしました。
def index(request):
firstTen = Person.objects.all()
pagination = Paginator(firstTen, 2)
page = request.GET.get('page')
try:
people = pagination.page('page')
except PageNotAnInteger:
people = pagination.page(1)
return render_to_response('index.html', {'people': people},
context_instance=RequestContext(request))
どういうわけか私は'Page' object is not iterable
それを私の見解でそのように使用するときに得ています
{% for result in people %}
{% endfor %}