Re: problem with related foreignkey in model

2006-06-16 Thread Antonello Cicchese
Thanks to all --~--~-~--~~~---~--~~ 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]

problem with related foreignkey in model

2006-06-15 Thread Antonello Cicchese
Hi everyone, I'm Antonello and I am new to django. I'm trying to write my very first serious app, so now all the problems are coming out. I have a model with two fields like these state =models.ForeignKey(State) city = models.ForeignKey(City) where State is class State(models.Model):