Re: What is in your opinion the best way to render a form

2009-05-26 Thread Joshua Partogi
On May 26, 4:52 pm, Joakim Hove wrote: > Hello, > > I have used ModelForm to create a form for a model class. In the > template rendering the form I just have: > > form.as_table > > that is very neat, compared to writing out all the form elements in > the template manually, but it is of course

What is in your opinion the best way to render a form

2009-05-25 Thread Joakim Hove
Hello, I have used ModelForm to create a form for a model class. In the template rendering the form I just have: form.as_table that is very neat, compared to writing out all the form elements in the template manually, but it is of course not as flexible. What is the common thing to do? Joa