使用django-blog-zinnia我有这个旧代码
from zinnia.views.decorators import update_queryset
def qset():
return BlogEntry.objects.filter(status=2).filter(creation_date__gte=cutoff)
view_blogs = update_queryset(object_list, qset)
问题是update_queryset给了我
ImportError at /
No module named decorators
它与移动到基于类的视图有关。那么如何使用mixin进行更新?