Re: djangoproject.com tutorial part 3

2014-11-01 Thread Tri Vo
I've figure out the problem. I was supposed to not have "/admin/" in the link. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegro

Re: djangoproject.com tutorial part 3

2014-10-21 Thread Tri Vo
Ok, I forgot say this. I'm using a different server to run Django. It works on the server that I am using. On Tue, Oct 21, 2014 at 3:42 AM, Daniel Roseman wrote: > On Tuesday, 21 October 2014 00:01:56 UTC+1, Tri Vo wrote: >> >> I am calling the page with "python manage.

Re: djangoproject.com tutorial part 3

2014-10-20 Thread Tri Vo
or is it just a > blank page? > > Also I assume the below were copied from the tutorial. Can you post the > contents of the three files as you typed them in your code? > > On Monday, 20 October 2014 04:31:57 UTC+1, Tri Vo wrote: >> >> So I am following the tutorial in this s

djangoproject.com tutorial part 3 "Hello, World..." not showing up.

2014-10-20 Thread Tri Vo
I am using this site to learn Django, and at this link https://docs.djangoproject.com/en/1.7/intro/tutorial03/ I created the polls/urls.py, polls/views.py, and mysite/urls.py files as followed in the site, but when I run the site, the site is running OK, but I do not see the "Hello, World..." m

djangoproject.com tutorial part 3

2014-10-20 Thread Tri Vo
So I am following the tutorial in this site, and copy and the first three codes into my project (polls/views.py, polls/urls.py, and mysite/urls/py) https://docs.djangoproject.com/en/1.7/intro/tutorial03/ polls/views.py from django.http import HttpResponse def index(request): return HttpResp