﻿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
11462	{% url %} tag is not working with the 'AS' modifier and named URLs	x13	nobody	"
I've included this lines into my '''urls.py'''

{{{
...
url(r'^coming-soon$', direct_to_template, {'template': 'soon.html'}, name='en-soon'),
url(r'^proximamente$', direct_to_template, {'template': 'soon.html'}, name='es-soon'),
...
}}}

Then, I tried to use them in my homepage.html with the {% url ... as ... %} tag:

{{{
...
{% url en-soon as url_soon %}
<a href=""{{ url_soon }}"">comming soon</a>
...
}}}

but it didn't work.

Next, I tried use {% url %} without the '''as''' modifier:

{{{
...
<a href=""{% url en-soon %}"">comming soon</a>
...
}}}


and it worked. 










"		closed	Template system	1.0		worksforme			Unreviewed	0	0	0	0	0	0
