在get_context_data()上分页-Django

时间:2019-01-29 07:30:49

标签: django django-models django-forms django-templates django-views

如何在get_context_data()上进行分页。以前我使用的是get_queryset(),但现在我正在查询两个模型。那我该怎么办

class UserListView(LoginRequiredMixin, generic.TemplateView):
    template_name = 'users/users.html'
    paginate_by = 1

    def get_context_data(self, **kwargs):   
        context = super(UserListView, self).get_context_data(**kwargs)
        context['companies'] = Company.objects.exclude(company_is_deleted=True).exclude(company_name='Apollo')
        context['users'] = User.objects.exclude(
            Q(userprofile__user_role__acl_role_title='Super Admin') | 
            Q(is_superuser=True) | 
            Q(userprofile__user_is_deleted = True)|
            Q(userprofile__user_company__company_is_deleted=True)
            )
        query = self.request.GET.get('query') 
        if query:
            list_query = context['users']
            context['users'] = list_query.filter(userprofile__user_company__company_name__icontains=query)
        return context

0 个答案:

没有答案