> > but it gives only > > /projects/join/6/ > > That's exactly what's expected.
Have you ever checked the docs (http://www.djangoproject.com/ documentation/templates/#url)? This /clients/client/123/ is expected! if I do (r'^coosci/$', include('coosci.webapp.urls')), it won't work as $ closes the regex, so this is where the url should end, I think this is simply wrong (I even tried it, and it was wrong) I tried to replicate the setting in the docs at http://www.djangoproject.com/documentation/templates/#url 0. cd to my_project dir 1. python manage.py startapp app_name 2. add the urls.py snippet ('^clients/', include('my_project.app_name.urls')) to the main urls.py 3. create a new urls.py under app_name, and add to it ('^client/(\d+)/ $', 'app_views.client') 4. create app_views.py and define a view that simply shows the url with {% url app_views.client client.id %} then at http://127.0.0.1:8000/clients/client/1 I get a ViewDoesNotExist error, for some reason the app_view.py file isn't treated as a module, and it can't be imported. There is an __init__.py in the directory as created by startapp. I think what happens is that in django/core/urlsresolvers.py get_callable finds properly the mod_name=app_name and func_name=client, but its import statement (line 47) fails as app_name in itself can't be seen from the project_root for example. I was playing with it a bit, and what worked is the following: 3. create a new urls.py under app_name, and add to it ('^client/(\d+)/ $', 'app_name.app_views.client') 4. create app_views.py and define a view that simply shows the url with {% url app_name.app_views.client client.id %} I hope this will help someone as well! In the meantime I just realised that my problem was another row in the main urls.py: #(r'^$', include('coosci.main_app.urls')), --> this was the problem, so django docs was indeed correct except for the {% url %} syntax (r'^coosci/', include('coosci.webapp.urls')), Cheers, V Here is the traceback for the ViewDoesNotExist error Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/django/core/servers/ basehttp.py", line 277, in run self.result = application(self.environ, self.start_response) File "/usr/lib/python2.5/site-packages/django/core/servers/ basehttp.py", line 634, in __call__ return self.application(environ, start_response) File "/usr/lib/python2.5/site-packages/django/core/handlers/ wsgi.py", line 204, in __call__ response = self.get_response(request) File "/usr/lib/python2.5/site-packages/django/core/handlers/ base.py", line 68, in get_response response = middleware_method(request) File "/usr/lib/python2.5/site-packages/django/middleware/common.py", line 72, in process_request urlresolvers.resolve(new_url[1]) File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", line 292, in resolve return get_resolver(urlconf).resolve(path) File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", line 233, in resolve sub_match = pattern.resolve(new_path) File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", line 233, in resolve sub_match = pattern.resolve(new_path) File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", line 172, in resolve return self.callback, args, kwargs File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py", line 181, in _get_callback raise ViewDoesNotExist, "Could not import %s. Error was: %s" % (mod_name, str(e)) ViewDoesNotExist: Could not import app_views. Error was: No module named app_views --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---