David Figueroa
2018-12-05 12:30:50 UTC
David Figueroa *por *
<https://support.google.com/mail/answer/1311182?hl=pt-BR> googlegroups.com
[image: Anexos]09:17 (Há 0 minutos)
para Django
In creating my first django project- I'm trying to create my first
application (polls) through a view as shown below.
I'm finding the error shown in the image in the Annex.
can anybody help me?
I'm following the step-by-step suggested in (
https://docs.djangoproject.com/pt-br/1.11/intro/tutorial01/)
*polls/view.py *
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")
* pols/urls*
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
]
*site1/urls*
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^polls/', include('polls.urls')),
url(r'^admin/', admin.site.urls),
<https://support.google.com/mail/answer/1311182?hl=pt-BR> googlegroups.com
[image: Anexos]09:17 (Há 0 minutos)
para Django
In creating my first django project- I'm trying to create my first
application (polls) through a view as shown below.
I'm finding the error shown in the image in the Annex.
can anybody help me?
I'm following the step-by-step suggested in (
https://docs.djangoproject.com/pt-br/1.11/intro/tutorial01/)
*polls/view.py *
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")
* pols/urls*
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
]
*site1/urls*
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^polls/', include('polls.urls')),
url(r'^admin/', admin.site.urls),
--
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+***@googlegroups.com.
To post to this group, send email to django-***@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/634d292d-b2ab-44a1-83c8-bb9d40e89084%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
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+***@googlegroups.com.
To post to this group, send email to django-***@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/634d292d-b2ab-44a1-83c8-bb9d40e89084%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.