Re: QuerySet rendering

2009-07-16 Thread Mihail Lukin
Thanks, Alex! I met something about django-tables somewhere and looks good. I wonder why it is not a part of djangoproject. On Jul 14, 1:55 am, Alex Gaynor wrote: > On Mon, Jul 13, 2009 at 2:48 PM, Mihail Lukin > wrote: > > > > > > > Hello, everyone! > > > django.forms allows me to define form

Re: QuerySet rendering

2009-07-13 Thread Alex Gaynor
On Mon, Jul 13, 2009 at 2:48 PM, Mihail Lukin wrote: > > Hello, everyone! > > django.forms allows me to define form class from model and render > forms to html with just calling as_table method. Is there some module > to do same thing with querysets? I guess its usage could look like > this: > > c

QuerySet rendering

2009-07-13 Thread Mihail Lukin
Hello, everyone! django.forms allows me to define form class from model and render forms to html with just calling as_table method. Is there some module to do same thing with querysets? I guess its usage could look like this: class UserTable (tables.ModelTable): class Meta: model = U