Hi
The hash mark has a special meaning in URIs; this is not specific to
Django
If you must use it in an actual URL, it needs to be escaped as %23
The urlencode template tag might help
https://docs.djangoproject.com/en/dev/ref/templates/builtins/#urlencode
Notice that this URL uses a hash mark as intended to reference an anchor
in the HTML page
--
Drew Ferguson