👩💻 Join our community of thousands of amazing developers!
Remove "%...% in urls Mar 13 '23 Comments: 1 Answers: 0 0 My urls in django have %.... How can I change that? At first this was ok but suddenly changed at some point in my day. My views, models and urls are as follow: class Rant(UUIDModel, TitleSlugDescriptionModel, TimeStampedModel, models.Model) categories = models.ManyToManyField(Category) def slugify_function(self, content): return content.replace("_", "-").lower() ...