Ah, I see. I didn't see that on the first read through - I think I
need a nap. Your URLs are lacking the /djmsb/ because that's how you
currently have your url.py patterns setup. You just need to add
'djmsb/' to the front of your urls:
from django.conf.urls.defaults import *
from django.contrib.auth.views import login, logout
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^djmsb/accounts/login/$', 'django.contrib.auth.views.login',
{'template_name': 'login.html'}),
(r'^djmsb/accounts/logout/$', logout),
(r'^djmsb/$', 'djmsb.views.indice'),
(r'^djmsb/biblioteca/', include('djmsb.biblioteca.urls')),
(r'^djmsb/admin/doc/', include('django.contrib.admindocs.urls')),
(r'^djmsb/admin/(.*)', admin.site.root),
)
R.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---