Re: search and filtering in app engine

2010-04-06 Thread knight
Thanks. On Apr 2, 4:22 pm, Waldemar Kornewald wrote: > On Apr 2, 12:26 pm, knight wrote: > > > 1.) I get error: "'Query' object has no attribute 'all'" on line 59 in > > views. > > As I understand it's something to do with the fact that GAE queryset > > is different from django queryset. > > How

Re: search and filtering in app engine

2010-04-02 Thread Waldemar Kornewald
On Apr 2, 12:26 pm, knight wrote: > 1.) I get error: "'Query' object has no attribute 'all'" on line 59 in > views. > As I understand it's something to do with the fact that GAE queryset > is different from django queryset. > How can I fix that? You've mixed two different model APIs. Your models

Re: search and filtering in app engine

2010-04-02 Thread James Bennett
On Fri, Apr 2, 2010 at 4:26 AM, knight wrote: > 1.) I get error: "'Query' object has no attribute 'all'" on line 59 in > views. > As I understand it's something to do with the fact that GAE queryset > is different from django queryset. > How can I fix that? By reading the documentation Google pro

search and filtering in app engine

2010-04-02 Thread knight
Hi, I'm trying to add filter and search to my site. It's exactly the same code as in another working django project. The difference is that this time I do it with app engine. my views: http://slexy.org/view/s21GMw2sh1 my forms: http://slexy.org/view/s21XX8bquM my search function: http://slexy.org