ImproperlyConfigured: TaggableManager is not supported by modeltranslation

model.py from taggit.managers import TaggableManager

class Blog(models.Model): tags = TaggableManager()

fields.py

if empty_value not in ("", "both", None, NONE): raise ImproperlyConfigured("%s is not a valid empty_value." % empty_value) field = cast(fields.Field, model._meta.get_field(field_name)) cls_name = field.class.name if not (isinstance(field, SUPPORTED_FIELDS) or cls_name in mt_settings.CUSTOM_FIELDS): raise ImproperlyConfigured("%s is not supported by modeltranslation." % cls_name) translation_class = field_factory(field.class) return translation_class(translated_field=field, language=lang, empty_value=empty_value) Can you help me buy such an error after the blog page tag loading process is completed?

Back to Top