I have created the following TagBase and each category can have subcategory... Will this work? How can I override its add function in the TaggableManager?
class Category(TagBase): parent = models.ForeignKey('self', blank=True, null=True, related_name='child') description = models.TextField(blank=True, help_text="Optional") class Meta: verbose_name = _('Category') verbose_name_plural = _('Categories') -- 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.