I'm writing an application form, an application for a workshop. User registration is required and people can start and continue the application process, essential create and edit their application data until the deadline is reached. The form is just one part of a web site, and it has 70 or so fields.
I don't think generic views will work for me because 1) I want to save the application even if it doesn't validate. Instead set a flag in the db that the application is not complete. 2) Use data from their site registration to populate parts of the form. So i'm trying to avoid writing a manipulator where i have to re-define all the fields. My only experience with writing manipulators is the registration form, which looks like http://dpaste.com/3315/ . A basic deviation from the documentation example http://www.djangoproject.com/documentation/forms/#custom-forms-and-manipulators . I was told in IRC to extend AutomaticManipulator. But I don't really know what this means in terms of Django/Python code. Does anyone have an example? Since this is probably beyond a Django first-timer, any other suggestions? TIA --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

