Commit eea1b24f authored by Cheska Hung's avatar Cheska Hung

completed project files

parent 5d26d729
from django.urls import path from django.urls import path
from . import views from .views import index
urlpatterns = [ urlpatterns = [
path('', views.index, name='index'), path('', index, name='index'),
] ]
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("call me:6969696969")
\ No newline at end of file
from django.urls import path from django.urls import path
from . import views from .views import index
urlpatterns = [ urlpatterns = [
path('', views.index, name='index'), path('', index, name='index'),
] ]
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("I like weeb music")
from django.urls import path from django.urls import path
from . import views from .views import index
urlpatterns = [ urlpatterns = [
path('', views.index, name='index'), path('', index, name='index'),
] ]
app_name = "homepage" app_name = "homepage"
\ 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