﻿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
11858	Named urls in url template tag resolved differently	pdwhite@…	nobody	"When using a url tag, if you specify the view of the url with no trailing slash in the regex, it will render as a url with no trailing slash.
When using the url tag with a url's name, it will render with a trailing slash.

Example:

urls.py:
{{{
    url(r'^site_media/(?P<path>.*)$', django.views.static.serve,
        {'document_root': '/location/to/files'}, name='static'),
}}}

template.html:
{{{
1. {% url static '/css/style.css' %}          #Ends up as /site_media/css/style.css/
2. {% url django.views.static.serve '/css/style.css' %} # /site_media/css/style.css
}}}"		closed	Uncategorized	1.1		worksforme			Unreviewed	0	0	0	0	0	0
