Re: About the Django URL tag {% url %}……

2012-09-01 Thread 绯红天空
2012/8/31 Amyth Arora > Paste the code to your urls.py and highlight which urls are not working. > > > On Thu, Aug 30, 2012 at 8:07 PM, Nikolas Stevenson-Molnar < > nik.mol...@consbio.org> wrote: > >> Also, your URL patters should start with "^" like your first one

Re: About the Django URL tag {% url %}……

2012-08-31 Thread Amyth Arora
Paste the code to your urls.py and highlight which urls are not working. On Thu, Aug 30, 2012 at 8:07 PM, Nikolas Stevenson-Molnar < nik.mol...@consbio.org> wrote: > Also, your URL patters should start with "^" like your first one does. > And unless you need the older version, I would upgrade to

Re: About the Django URL tag {% url %}……

2012-08-30 Thread Nikolas Stevenson-Molnar
Also, your URL patters should start with "^" like your first one does. And unless you need the older version, I would upgrade to the latest stable version of Django (1.4.1) before doing anything else. _Nik On 8/29/2012 7:37 PM, Scarl wrote: > My python version is 2.7.2 , and django version is

Re: About the Django URL tag {% url %}……

2012-08-30 Thread Nikolas Stevenson-Molnar
It should still work... the problem may be elsewhere. Would you please provide the full contents of both url files? _Nik On 8/29/2012 7:37 PM, Scarl wrote: > My python version is 2.7.2 , and django version is 1.2.7 > I have a test just now. > If i put the name parameter in mysite.urls like

Re: About the Django URL tag {% url %}……

2012-08-30 Thread Scarl
I am so sorry……I didn't provide the render params... -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/04wrFi8MWRcJ. To post to this group, send email to

About the Django URL tag {% url %}……

2012-08-29 Thread Scarl
My python version is 2.7.2 , and django version is 1.2.7 I have a test just now. If i put the name parameter in mysite.urls like url(r'^test/$', 'testpage', name='www'), the {% url www %} can work... But when I put the name parameter in mysite.myapp.urls like url(r'help/$', 'testpage',