Does anyone have any suggestions on how to use mutli-table inheritance
with model forms or some other way of creating it.  For example if I
have a model setup like this:

class MetaData(models.Model):
  date = models.DateField()
  subject = models.CharField()

class Body(MetaData):
  body = models.TextField()

Basically I want create or edit all the fields for both models at the
same time.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to