如何使用django.views.generic.date_based.archive_index获得前五个对象?

时间:2010-08-01 20:46:34

标签: python django django-queryset django-generic-views

我正在尝试使用如下通用视图显示最新的5个帖子:

urlpatterns = patterns('',
  (r'^$', 'django.views.generic.date_based.archive_index', 
  {
      'queryset': Post.objects.all()[:5], 
      'date_field': 'created_on', 
      'template_name': 'index.html'}
  })

但是我得到了

  

/

处的AssertionError      

切片无法过滤查询   已被带走。

我该怎么办?

1 个答案:

答案 0 :(得分:2)

num_latest: The number of latest objects to send to the template context. By default, it's 15.