Re: link to ForeignKey in Admin's change list page

2008-11-18 Thread Paolo Corti
Daniel, thanks a lot, it works perfectly Paolo On Nov 17, 8:19 pm, Daniel Roseman <[EMAIL PROTECTED]> wrote: > On Nov 17, 4:42 pm, Paolo Corti <[EMAIL PROTECTED]> wrote: > > > > > Hi > > maybe this is trivial, but i can't find a way to get it (and from what > > i can see it seems not possible):

Re: link to ForeignKey in Admin's change list page

2008-11-17 Thread Daniel Roseman
On Nov 17, 4:42 pm, Paolo Corti <[EMAIL PROTECTED]> wrote: > Hi > maybe this is trivial, but i can't find a way to get it (and from what > i can see it seems not possible): > > my model: > > class Project(models.Model): >         name = models.CharField('name', max_length=255) >         >    

link to ForeignKey in Admin's change list page

2008-11-17 Thread Paolo Corti
Hi maybe this is trivial, but i can't find a way to get it (and from what i can see it seems not possible): my model: class Project(models.Model): name = models.CharField('name', max_length=255) #relationship projectowner = models.ForeignKey(Person) in admin