Commit ca9a362a authored by Nicholo Pardines's avatar Nicholo Pardines

Moved about urls.py to correct directory and added urls.py code

parent b72234c9
from django.urls import path
from .views import contactInfo
# .views as in ./views and then we import the index function
# which we just created
urlpatterns = [
path('', contactInfo, name="contact"),
]
# built in function
app_name = "contact"
\ No newline at end of file
from django.urls import path
from .views import greeting
# .views as in ./views and then we import the index function
# which we just created
urlpatterns = [
path('', greeting, name='greet'),
]
# built in function
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