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

Reply via email to