简体   繁体   中英

How to add translation fields in django-taggit?

I am working on multi language web-site. In my apps I am using django modeltranslation to set values on different languages from admin. So how can I add modeltranslation into django-taggit to have a tag on different languages?

Well I came around, when I was looking for the same issue:

#models.py
@register_snippet
class BlogTag(TagBase):
    class Meta:
        verbose_name = "tag"
        verbose_name_plural = "tags"

    #this is for editing in wagtail. For django not needed
    panels =  [
        FieldPanel('name'),
        FieldPanel('slug'),
    ]

class BlogPageTag(ItemBase):
    tag = models.ForeignKey(
        BlogTag, related_name="tagged_blogs", on_delete=models.CASCADE
    )
    content_object = ParentalKey('BlogPage', related_name='post_tags')

from modelcluster.tags import ClusterTaggableManager

class BlogPage(Page):
    tags = ClusterTaggableManager(through=BlogPageTag, blank=True)

And in the translation.py:

#translation.py
from .models import BlogPage,BlogTag
from django_modeltranslation.translation import TranslationOptions,register


@register(BlogPage)
class BlogPageTR(TranslationOptions):
    fields = (
       'intro','body',
    )

@register(BlogTag)
class BlogTagTR(TranslationOptions):
    fields = (
      'name',
    )

我认为您必须继承 TagBase 并添加您自己的可翻译字段。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM