I am trying to create a custom slug for every page of a specific Page model on Wagtail. I have been looking into and tried the RoutablePageMixin examples, but that seems to modify the url structure, not the slug itself.
Here is what I am looking to do:
Current page title: About Django
current page slug: about-django
page title I want: About Django
page slug I want: awesome-things-about-django
I looked at creating route method, but that didn't seem to modify the slug. Is there any way to prepend something onto your slug? I understand I can do this manually, but would prefer for it to happen automatically.