Hi Landy,

You understand the problem correctly.  I'm not sure how to implement
your suggestion.  I'm seeing a <name 'model' is not defined> when I do
similar to the following:
---------------------------------
class myModel(models.Model):
    first_name   = models.CharField( max_length=100,
verbose_name='first')

class abstractForm( ModelForm ):
    class Meta:
        model = myModel

class myForm(abstractForm):
    class Meta(myForm.Meta):
        model.table_name = 'test_model'
---------------------------------

Also, would db sync work with this approach or would I have to
manually add the table?

Thank you for your help!!!!

Brian

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to