Re: a question about get_paginate_by method of django.views.generic.list.MultipleObjectMixin

2014-09-14 Thread younger.shen
i can use it as self.queryset, i do not need to pass the queryset as a function parameter, but still thank YOU . every key to every locked *DREAM* 2014-09-14 22:00 GMT+08:00 Aymeric Augustin < aymeric.augus...@polytechnique.org>: > Someone might want to return a different v

Re: a question about get_paginate_by method of django.views.generic.list.MultipleObjectMixin

2014-09-14 Thread Aymeric Augustin
Someone might want to return a different value depending on the queryset, especially depending on queryset.count(). -- Aymeric. On 14 sept. 2014, at 12:17, younger.shen wrote: > hi everyone: > > I write a mixin so i check the inner mixins of django itself, and find this > > def get_pagin

Re: a question about get_paginate_by method of django.views.generic.list.MultipleObjectMixin

2014-09-14 Thread younger.shen
my version of django is 1.7 every key to every locked *DREAM* 2014-09-14 18:17 GMT+08:00 younger.shen : > hi everyone: > > I write a mixin so i check the inner mixins of django itself, and find > this > > def get_paginate_by(self, queryset): > """ > Get the

a question about get_paginate_by method of django.views.generic.list.MultipleObjectMixin

2014-09-14 Thread younger.shen
hi everyone: I write a mixin so i check the inner mixins of django itself, and find this def get_paginate_by(self, queryset): """ Get the number of items to paginate by, or ``None`` for no pagination. """ return self.paginate_by i wanna know what the queryset is