views:

28

answers:

1

Is there a form(or any other solution) that allows me to quickly build forms that display lists of models(with filtering, ordering etc) like the django admin site does?

A: 

Short answer: Yes.

Long answer: Yes, but the filtering, ordering, etc. are left up to you to come up with. In Django "generic view" really does mean generic.

jathanism