In a Djano project, I need to get the complete URL of my web app in a view, along with the URL's anchor tag. For instance, if the URL is:
http://example.com/#section0
I need to get that in its entirely, including the #section0
part. As you'd already know, HTTP_REFERER
doesn't suffice (which is what I've tried).
What's a good way to read URLs in python/django? Beginner here, please advise.