I had similar problems, trying to tie the form and model too closely. >From what I understand the form needs to be aware of the model(s), but there isn't anything forcing you to a 1:1 relationship (form_for_model does that for convenience, but isn't the only way). You just have to override __init__() and save() for the form, and handle the model specific stuff there. I'm just starting with Django though, so hopefully someone more knowledgeable will chime in and either confirm or show us the right way!
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

