﻿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
4075	The url template tag incorrectly includes the '?' character found in a urls.py regex when producing urls.	justin.vanwinkle@…	Adrian Holovaty	"The template tag 
{{{
{% url example_edit %}
}}}
produces 
{{{
http://localhost:8000/wiki/example/add/?
}}}
for the urls.py entry 
{{{
#!python
url(r'^wiki/example/add/?$', example_edit, name=""example_edit"")
}}}
it should produce
{{{
http://localhost:8000/wiki/example/add/
}}}
since the '?' is a regex operator in this context."		closed	Template system	dev		fixed	url question-mark regex template		Accepted	0	0	0	0	0	0
