Hi ,
I have two models.

class Project(models.Model):
proj_name = models.CharField(max_length=200)
proj_desc = models.CharField(max_length=200)

class Module(models.Model):
pro_module = models.ForeignKey(Project)
        module_desc=models.CharField(max_length=200)

Now the scenario is I want to select proj_name from my user page and update 
it in Module table (pro_module field) .Please give some hints to implement 
this.
Regards,
kvr
 

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to