In a (somewhat) related vein: is there anyway to make ForeignKey
objects links to their objects when they are one of the list_display
columns for the related object?

I don't think I said that real well, so here's an example of what I'm
after.

IOW, given:
class Poll(models.Model):
    question = models.CharField(maxlength=200)
    pub_date = models.DateTimeField('date published')

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(maxlength=200)
    votes = models.IntegerField()
    class Admin:
        list_display = ('choice','votes','poll',)

...is there some way to make 'poll' a clickable link to that Choice's
related poll object when viewing the overall list of Choice objects?


--~--~---------~--~----~------------~-------~--~----~
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]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to