Re: Filtering using several parameters

2009-11-23 Thread Aizen
I'd already looked at django-filter...the implementation of this is not how I'd like to do it in my app. The filters are based on a certain year, make, model, colour, or body style. So if the user selects 2009, all vehicle records in the year 2009 are displayed. Next, if the user selects Acura, a

Re: Filtering using several parameters

2009-11-23 Thread Preston Holmes
On Nov 23, 8:51 am, Aizen wrote: > Hi, > > I'd like to implement filtering for my app...currently, the filtering > I have is stateless and so I can't add onto whatever value the user > last selected.  I've also implemented each filter separately, so I'd > like to know how I can condense the five

Filtering using several parameters

2009-11-23 Thread Aizen
Hi, I'd like to implement filtering for my app...currently, the filtering I have is stateless and so I can't add onto whatever value the user last selected. I've also implemented each filter separately, so I'd like to know how I can condense the five filters into one. The code for my filters is