thanks for your response. the tags_list field that you propose is an extra field that is stored in the database. i want to avoid this because tags are stored in their own tables and this field is only used for conveniency. the contents of this field is not needed at all and it goes out of sync with the tags if i remove tags through the Tags model's admin interface.
konstantin On May 11, 4:24 pm, book4e <[EMAIL PROTECTED]> wrote: > Tag can be edit or delete in admin interface without problems. I suggest > using > > def _get_tags(self): > return Tag.objects.get_for_object(self) > > def _set_tags(self, tag_list): > Tag.objects.update_tags(self, tag_list) > > tags = property(_get_tags, _set_tags) > > in your model and a tag_list field regarding CharField to save a list of > tags your user input. Becase the template can't get TagField' s data when > rendering it. > > If you are about to save non-ascii characters, you should patch > this:http://code.google.com/p/django-tagging/issues/detail?id=25&can=2&q= > > After that, everything should work. Hope this help. > > Regards > > -bk --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---