tags:

views:

38

answers:

2

Is there any interface that exists already to facilitate selecting objects with django's filter function? I'd like to have the power of the filter function in my app, but don't really feel like writing a clumsy facade to just pass things through to the filter function.

A: 

The admin interface is pretty close to what you want I think. It comes with django out of the box.

aciniglio
+3  A: 

I'm a big big fan of django-filter and know I'm not the only one who hopes this will be included as a contrib app in Django.

Van Gale