You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 django admin will have their slug generated by prepopulated_fields and therefore unicode characters in it... (but it is a django-taggit issue).
Description
URL for tags list view uses
slug
as path converter, which only accepts ASCII characters.:djangocms-blog/djangocms_blog/urls.py
Line 37 in 30dbb72
But django-taggit allows unicode in tags' slugs.
When a
reverse()
is done on this URL, it throws an exception:Steps to reproduce
Versions
Python == 3.11
Django == 3.2.25
djangocms-blog == 2.0.7
The text was updated successfully, but these errors were encountered: