Re: Django 1.5 & Python 2.7.3 - Not able to view pages

2013-03-19 Thread Kamalakannan Srinivasan
Thanks. On Tuesday, March 19, 2013 9:05:12 PM UTC+5:30, Kamalakannan Srinivasan wrote: > Hi, > > I have just started learning Django 1.5 and am reading The Django Book > Chapter 3: Views and URL Confs. > > I set up the Views.py with the following code: > > *from django.http import HttpRes

Re: Django 1.5 & Python 2.7.3 - Not able to view pages

2013-03-19 Thread Joel Goldstick
On Tue, Mar 19, 2013 at 11:35 AM, Kamalakannan Srinivasan < kamalakannan.sriniva...@gmail.com> wrote: > Hi, > > I have just started learning Django 1.5 and am reading The Django Book > Chapter 3: Views and URL Confs. > > I set up the Views.py with the following code: > > *from django.http import H

Django 1.5 & Python 2.7.3 - Not able to view pages

2013-03-19 Thread Kamalakannan Srinivasan
Hi, I have just started learning Django 1.5 and am reading The Django Book Chapter 3: Views and URL Confs. I set up the Views.py with the following code: *from django.http import HttpResponse def hello(request): return HttpResponse("Hello world")* Then I created the urls file with the