Adrien Delhorme
Adrien Delhorme
The bug is still present for me with `djangocms-blog==1.2.3` and `Django==3.2.13`.
I just need a validation for this proposal, then I can submit a pull request to fix this, please reopen this issue 🙏
`asgiref` is imported here: https://github.com/django-cms/django-cms/blob/63f421ae600840dd77d974583e4827650ac538da/cms/utils/permissions.py#LL5C6-L5C13
Thanks! My project was on Django 2.2 🤦♂️.
I can't close the ticket, I'm not the original poster 😄!
I have 50+ clients and 100+ projects. Each client has about the same projects (website, intranet, etc). Each project has about the same tasks (eg. dev, meetings, support, design, etc)....
A workaround is to set `TAGGIT_STRIP_UNICODE_WHEN_SLUGIFYING = True` in your settings. Tags created via a Post will have a slug without unicode characters. But tags created via Taggit section of...
And to fix tag creation via django's admin, we can use a `pre_save` signal to remove unicode chars from slugs before saving a Tag instance. ```py from django.utils.text import slugify...