Commit dd933405 authored by Brescia Amandy's avatar Brescia Amandy

created urls.py files

parent 8f2cf966
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
# This might be needed depending on your Django version
app_name = "about"
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse('Hello World! This came from the index view')
......@@ -14,8 +14,11 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('about/', include('about.urls', namespace="about")),
path('homepage/', include('homepage.urls', namespace="homepage")),
path('contact/', include('contact.urls', namespace="contact")),
path('admin/', admin.site.urls),
]
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
# This might be needed depending on your Django version
app_name = "contact"
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse('Hello World! This came from the index view')
\ No newline at end of file
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
# This might be needed depending on your Django version
app_name = "homepage"
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse('Hello World! This came from the index view')
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment