Re: How to use URL namespaces in tests?

2012-09-07 Thread e.generalov
Unfortunately in my case, no templates are used. среда, 5 сентября 2012 г., 20:37:06 UTC+6 пользователь Natim написал: > > Ok it is quite easy, you are missing {% load url from future %} in your > template. > > Le jeudi 23 août 2012 09:25:54 UTC+2, e.generalov a écrit : >> >> Url patterns which

Re: How to use URL namespaces in tests?

2012-09-05 Thread Natim
Ok it is quite easy, you are missing {% load url from future %} in your template. Le jeudi 23 août 2012 09:25:54 UTC+2, e.generalov a écrit : > > Url patterns which provided by a django application should be > addressedexternally in > the form of "namespace:name". I guess it will be connected

Re: How to use URL namespaces in tests?

2012-09-05 Thread Natim
I've got the same problem any ideas ? Le jeudi 23 août 2012 09:25:54 UTC+2, e.generalov a écrit : > > Url patterns which provided by a django application should be > addressedexternally in > the form of "namespace:name". I guess it will be connected to the project as > follows: > >

How to use URL namespaces in tests?

2012-08-23 Thread e.generalov
Url patterns which provided by a django application should be addressedexternally in the form of "namespace:name". I guess it will be connected to the project as follows: project/urls.py urlpatterns = patterns('', url('^something/', include('django_something.urls',