Thursday, December 21, 2017

why is a text not displayed?

I made this along a tutorial.
However 
"Hello, world. You're at the blog index."
is not displayed.
"""blog/views.py"""
from django.http import HttpResponse


def index(request):
   
return HttpResponse("Hello, world. You're at the blog index.")
"""blog/urls"""
from django.urls import include, path
from django.contrib import admin
from . import views

urlpatterns
= [
    path
('', views.index, name='index'),
    path('blog/', include('blog.urls')),
    path('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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@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/985ce4a9-1288-40fa-9aea-6510f6c84d6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment