below is the my 2 models 

Class Profile(models.MODEL):
       
      first_name = models.Charfield()
      last_name = models.Charfield()
      adress = ..... 

Class Reservation(models.MODEL):
       
       profile = models.ForeignKey(Profile)
       price = models.IntegerField()
       room = models.Charfield()


and I have 2 model form with both models, and my user interface includes 
all of above those fields,

so What kind of structure do I have to use,  multiple inheritence or just 
model form(Reservation),

Thank you :)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bb02f48f-47ab-4393-bf5c-11be9c1edfad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to