Here is the piece of code

class Person(meta.Model):
    first_name = meta.CharField(maxlength = 100)
    last_name = meta.CharField(maxlength = 100)

class EmailType(meta.Model):
    title = meta.CharField(maxlength = 100)
    description = meta.CharField(maxlength = 100)

class PersonEmail(meta.Model):
    person = meta.ForeignKey(Person)
    email_type = meta.ForeignKey(EmailType)
    email = meta.CharField(maxlength = 100)


Person is a model class for one person.
EmailType is like primary email, Scondary, Business, Personal etc
EmailPerson the mapping between persons email and email types(person
can have more than one email)

Now when I create a person object I assign him an email like

p.add_email(email='[EMAIL PROTECTED]')

here i ma ignoring the fact that i have an email type also. Now I am
unable to figure out how to add email as well as email type to person

can any one help out.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to