Django OldForms Automatic Form Generation
As of May 2007 Django NewForms doesn't yet deal with File and Image Fields properly. The NewForms library doesn't validate or generate HTML forms for File uploads or similarly Image uploads.
In the meantime OldForms library can, however the OldForms lack the handy feature of outputting the entire form as HTML into your template. Instead of the old way of creating a variable for each element in your form in your template, essentially coding the entire form by hand, Newforms can print out the entire form as HTML formatted string directly to your template with the methods form.as_p or ...



2 Comments