﻿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
7803	url template tag doesn't pass arguments to view	osanha@…	nobody	"about <% url foo bar %> template tag.

when 'url' tag reverse url, arguments can't be sended properly in case below.
aggument that there is in views but not in url is CAN NOT SENDED from url template tag.


(examples)

<views.py>
    def ticket(request, next=None):
        context = {""next"": next}
        return render_to_response(""ticket.html"", context)


<ticket.html>
    next={{ next }}


'''CASE 1:'''

RESULT is VALID case.

<urls.py>
    url(r'^ticket/$', 'my.test.views.ticket', {'next': 100}, name='test_ticket')

<caller.html>
    <a href=""{% url my.test.views.ticket %}"">next ticket</a>
or  <a href=""{% url test_ticket %}"">next ticket</a>

<result of ticket.html>
   next=100



'''CASE 2:'''

RESULT is INVALID case.

<urls.py>
    url(r'^ticket/$', 'my.test.views.ticket', name='test_ticket')

<caller.html>
    <a href=""{% url my.test.views.ticket next=100 %}"">next ticket</a>
or  <a href=""{% url test_ticket next=100 %}"">next ticket</a>

<result of ticket.html>
   next=None


'''CASE 3:'''

RESULT is VALID case. But, 'next' in url is dummy.

<urls.py>
    url(r'^ticket/(?P<next>.*)/$', 'my.test.views.ticket', name='test_ticket')

<caller.html>
    <a href=""{% url my.test.views.ticket next=100 %}"">next ticket</a>
or  <a href=""{% url test_ticket next=100 %}"">next ticket</a>

<result of ticket.html>
   next=100

"		closed	Template system	dev		wontfix	url templatetag		Unreviewed	0	0	0	0	0	0
