DEV Community

Vicente G. Reyes
Vicente G. Reyes

Posted on

Remove "%...% in urls

1

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()

    def get_absolute_url(self):

Latest comments (0)