Re: View error in tutorial 3 (URLCONF)

2008-09-23 Thread Caisys
Thanks a lot !! On Sep 22, 6:19 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Sep 22, 2008 at 11:52 AM, Caisys <[EMAIL PROTECTED]> wrote: > > > Hi, > > I am following the tutorials on django website. My problem is that > > when i create url conf for views that do not exist, the admin

Re: View error in tutorial 3 (URLCONF)

2008-09-22 Thread Karen Tracey
On Mon, Sep 22, 2008 at 11:52 AM, Caisys <[EMAIL PROTECTED]> wrote: > > Hi, > I am following the tutorials on django website. My problem is that > when i create url conf for views that do not exist, the admin site > ceases to work. > Mysite\urls.py includes: > (r'^admin/(.*)', admin.site.root), >

View error in tutorial 3 (URLCONF)

2008-09-22 Thread Caisys
Hi, I am following the tutorials on django website. My problem is that when i create url conf for views that do not exist, the admin site ceases to work. Mysite\urls.py includes: (r'^admin/(.*)', admin.site.root), (r'^polls/', include('mysite.polls.urls')), Mysite\Polls\urls.py includes: