I think that you need to do  

(r'^coosci/$', include('coosci.webapp.urls')),

In your myproject/urls.py file for that to work (but I could be wrong!).

> -----Original Message-----
> From: django-users@googlegroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Viktor Nagy
> Sent: 10 July 2008 17:10
> To: django-users@googlegroups.com
> Subject: how does {% url %} work?
> 
> 
> Hi 5!
> 
> I have the following files
> myproject/urls.py with a line
> 
> (r'^$', include('coosci.webapp.urls')),
> 
> then I have
> myproject/coosci/urls.py with a line
> (r'^projects/join/(?P<project_id>\d+)/$', 'join_project'),
> 
> and finally in my template
> {% url webapp.views.join_project project_id=project.project.id %}
> 
> as far as I understand
> (http://www.djangoproject.com/documentation/templates/#url) 
> this should give back a link to /coosci/projects/join/6/
> 
> but it gives only
> /projects/join/6/
> 
> is there something I miss? how can I get the "proper" link?
> I'm using the SVN version
> 
> thanks, V
> 
> > 
> 

-- 
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium.  Thank you.



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to