[Answered ]-Django url patterns – how to get absolute url to the page?

2πŸ‘

βœ…

The part of URI separated by β€˜#’ sign is called a fragment identifier. Its sense is to be processed on client side only, and not to be passed to server. So if you really need this, you have to process it with JS, for example, and pass it as a usual parameter. Otherwise, this information will never be sent to Django.

Leave a comment