Hello, I have a model that looks like this: class Item(models.Model): ...other fields... tags = TagField()
I have not defined any additional methods for tagging on the model. In admin.py: class ItemAdmin(admin.ModelAdmin): list_filter = ('featured', 'available', 'tags',) In admin, the tagging app is working as it should, updates and additions work properly. However the list of tags that shows up in the right side tag filters list does not appear to update properly or is displaying tags erroneously. For example, an item tagged 'bagues crystal sconces appliques' (no quotes) appears in the tagging app list as four different tags as it should. In the filter list for 'items,' all four tags show up as one link and do not show as individual tags. Is there something else I need to do? Thanks, Dan J. -- 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.