2009/12/24 Chris Withers <[email protected]>:
> Hi All,
>
> My django site is served up with the following in Apache's config:
>
> WSGIScriptAlias /studio /django/studio/bin/django.wsgi
>
> My urls.py looks like:
>
> urlpatterns += patterns(
>     'django.contrib',
>     (r'^admin/', include(admin.site.urls)),
>     (r'^accounts/login/$', 'auth.views.login'),
>     (r'^accounts/logout/$', 'auth.views.logout'),
>     )
>
> ...and yet:
>
> [<a href="{% url admin:index %}">admin</a>]
>
> ...generates a link to /admin rather than /studio/admin.
> Bizarrely, the urls within the admin interface itself are fine.
>
> I'm using:
>
> Python 2.5.2-3
> Django 1.1.1
> mod_wsgi  2.5-1~lenny1
> apache2 2.2.9-10+lenny6
>
> Can anyone tell me what I'm doing wrong?
>
> cheers,
>
> Chris
>
> --
> Simplistix - Content Management, Batch Processing & Python Consulting
>            - http://www.simplistix.co.uk
>
> --
>

Seems to me you are missing namespace definitions in your URL for that to work.

http://docs.djangoproject.com/en/dev/topics/http/urls/#defining-url-namespaces

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
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