How can I have URLs like example.com/category/catename-operation/
in Django?
Also in some cases the user enters a space separated category, how can I handle that?
E.g if the user enters the category as "my home", then the URL for this category will become
example.com/my home/
which is not a valid URL.
How can I handle these things?