That works great...thanks
bruno desthuilliers wrote:
> On 29 oct, 23:49, Andew Gee wrote:
> > Hi,
> >
> > I have the following models
> >
> > class Person(models.Model):
> > name = models.CharField(max_length=100)
> >
> > class Employee(Person):
> > job = model.Charfield(max_
On 29 oct, 23:49, Andew Gee wrote:
> Hi,
>
> I have the following models
>
> class Person(models.Model):
> name = models.CharField(max_length=100)
>
> class Employee(Person):
> job = model.Charfield(max_length=200)
>
> class PhoneNumber(models.Model):
> person = mo
Hi,
I have the following models
class Person(models.Model):
name = models.CharField(max_length=100)
class Employee(Person):
job = model.Charfield(max_length=200)
class PhoneNumber(models.Model):
person = models.ForeignKey(Person)
How do I access the PhoneNumbers
3 matches
Mail list logo