﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27400	"Changed in 1.10: {% static %} tag now encodes ""#"""	no	Henry Dang	"As of 1.10, the static tag will now encode ""#"" as ""%23"" causing the url to break.

example usecase:
{{{#!html+django

<svg>
    <use xlink:href=""{% static 'path/to/img.svg#whichimg' %}""></use>
</svg>
}}}
will become:
{{{#!html+django

<svg>
    <use xlink:href=""/static/path/to/img.svg%23whichimg""></use>
</svg>
}}}

which is incorrect, whereas prior to 1.10, the link would have read `""/static/path/to/img.svg#whichimg""`

In the very least, this should have been documented as a backward incompatible change.
"	Cleanup/optimization	closed	Documentation	1.10	Normal	fixed			Accepted	1	0	0	0	1	0
