Re: Problem with the urls.py "unexpected end of pattern"

2012-08-18 Thread Rafael Romero Carmona
2012/8/17 Alexis Roda > I think that this is not the problem because I can access to volunters >> without problems. I have problems only with admin, organizers and events >> paths. >> > > So you have problems with all the urls past the first with a wrong

Re: Problem with the urls.py "unexpected end of pattern"

2012-08-17 Thread Rafael Romero Carmona
2012/8/17 Alexis Roda <alexis.roda.villalo...@gmail.com> > Al 17/08/12 17:42, En/na Rafael Romero Carmona ha escrit: > > Hi, I'm learning Django and I have problems with the urls.py. I show you >> how that's writed: >> >> from django.conf.urls import

Problem with the urls.py "unexpected end of pattern"

2012-08-17 Thread Rafael Romero Carmona
Hi, I'm learning Django and I have problems with the urls.py. I show you how that's writed: from django.conf.urls import patterns, include, url from django.contrib import admin admin.autodiscover() urlpatterns = patterns('users.views', url(r'^volunters/$', 'voluntersindex'),