Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tags are not being saved when using django-taggit with django-parler. #347

Open
mirodil1 opened this issue Jan 20, 2024 · 0 comments
Open

Comments

@mirodil1
Copy link

I am using django-parler for translation and django-taggit for adding tags. But when I add tags inside translation field (because of using in multiple language) tags are not being saved in admin page.

class News(models.Model):
    translations = TranslatedFields(
        title=models.CharField(max_length=255),
        content=RichTextUploadingField(),
        tags=TaggableManager(),
        slug=models.SlugField(max_length=255, db_index=True),
    )
    category = models.ForeignKey(Category)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant