I'm trying to make a wagtail pages for the astrologer based on category, country and city. And my url's are:
https//localhost:8080/<category>
https//localhost:8080/<category>/<country>
https//localhost:8080/<category><country>/<city>
If I am trying to save the url with '/' forward slash then it removing the '/' form the slug and saving it as a string.
Ex: <category><country>/<city> to categorycountrycity
So Is it possible to override the wagtail default page slug type 'SlugField' to 'CharField'. or is there any other solution ?