I have a URL in the following format.
http://127.0.0.1:8000/accounts/login/?next=/event/contract-risk-management/review/
And I need to "parse" the "/event/contract-risk-management/review/" part from it in templates, but I don't know how to get the part after question mark.
I tried request.path but it returned only the first part of the URL (without a domain).
What should I use?