created a urls file for Homepage app

parent 888818ce
from django.urls import path
from .views import homepageIndex
urlpatterns = [
path('', homepageIndex, name='homepageIndex'),
]
# This might be needed, depending on your Django version
app_name = "Homepage"
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