Lets consider a simple case with a ForeignKeyField:

class Model1(models.Model):
        code1 = models.IntegerField()
        code2 = models.CharField()

        def __unicode__(self):
                return unicode(self.code1)

class Model2(models.Model):
        mycode = models.ForeignKey(Model1, to_field='code2')
        mydata = models.IntegerField()


the command syncdb correctly creates Model2 table, with the column
'mycode' as CharField corresponding to Mode1.code2.
When we try to add a new Model2 row through the admin 'add' command,
the
'mycode' dropdown menu presents the Model1.code1 list, instead
of the Model1.code2.
Is it possible to list in the dropdown menu the code2 data, other than
changing the __unicode__ function of Model1 class to 'return unicode
(self.code2)' ?

The same is happening at the admin-list page. The 'mycode' column of
Model2 lists
code1 data instead of code2.

It seems like Django-admin doesn't take in account the 'to_field'
directive.

(Django Version 1.1.0)

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to