Hi, This is my first django app and I can't seem to get filter_horizontal to work correctly. I've seen other people asking about this but I don't see any answers in an hour of searching. Can anybody give me some insight into what I'm doing wrong? Right now when I use Admin to create a document I get a select box that just says Tags Object. So there's two things I'd like help with if possible. 1) Am I using filter_horizontal correctly? If not, what am I doing wrong? 2) If I don't use filter_horizontal, how do I get the items in the select box to say the name of the of the Tag rather than say Tags Object? Some info about my environment. I'm using Django 1.1.1, python 2.5, Apache, and I've tested on IE, Firefox, and Chrome. My admin seems to work otherwise. Thanks in advance for any help. class Tags(models.Model): tagname = models.CharField(max_length=40, primary_key=True) class Document(models.Model): name = models.CharField(max_length=40) location = models.FileField(upload_to='repository') indexed = models.BooleanField(('indexed'), default=False) tag= models.ManyToManyField(Tags)
class TagsAdmin(admin.ModelAdmin): list_display = ('tagname',) class DocumentAdmin(admin.ModelAdmin): list_display = ('name', 'indexed',) filter_horizontal = ('tag',) admin.site.register(Tags, TagsAdmin) admin.site.register(Document, DocumentAdmin) --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---