On 11/13/2014 02:33 PM, John Schmitt wrote: > I have a big django project with multiple apps, models, and the models have > quite a few fields. > > A request came that asked for a page that allows the user to pick and choose > from the various fields to create their own query. > > Does any precedent for this exist?
Hi John, What you're looking for is called "faceted search" or "faceted navigation". Django Haystack <http://django-haystack.readthedocs.org/en/latest/> is one implementation of this. -- Regards, Clifford Ilkay -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/54650FA1.7080600%40dinamis.com. For more options, visit https://groups.google.com/d/optout.

