You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Sun, Jan 12, 2020, 12:37 PM ajay191999 ***@***.***> wrote:
djangomainfolder/blog/urls.py
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='blog-home'),
]
djangomainfolder/blog/views.py
from django.shortcuts import render
from django.http import HttpResponse
def home(request):
return HttpResponse('<h1>Blog Home</h1>')
djangomainfolder
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('blog/', include('blog.urls')),
]
my main file
django_tutorial.zip
<https://github.com/ajay191999/rookie_programmer/files/4050296/django_tutorial.zip>
Issue after typing "python manage.py runserver" in command line
[image: cmdlinerunserver]
<https://user-images.githubusercontent.com/59787396/72215176-9d7d6100-3535-11ea-9421-29370ce8d321.png>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#89?email_source=notifications&email_token=AKBSIYRDWTPIW3LF7QBCWRLQ5K6SRA5CNFSM4KFWEYJ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFR5ZEA>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKBSIYQ5535QTBEGI7CQFKDQ5K6SRANCNFSM4KFWEYJQ>
.
my main file
django_tutorial.zip
Issue after typing "python manage.py runserver" in command line
The text was updated successfully, but these errors were encountered: