I'd like to display a list of tags (ManyToMany relationship to
Articles) in admin list_display.

I'm getting a reference to an object. Is there a way to do this in
Admin class inside my model?

Below is a code chunk from my model:

class Article(models.Model):
    #...
    tags                = models.ManyToManyField(Tag, filter_interface
= models.HORIZONTAL)

    class Admin:
          list_display         = ('heading', 'date_received',
'time_added', 'time_updated', 'tags')


--~--~---------~--~----~------------~-------~--~----~
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