Changed the name function that accepts a request and returns a string

parent b5e83170
Pipeline #2725 failed with stages
from django.urls import path
from .views import index
from .views import homepageIndex
urlpatterns = [
path('', index, name='index'),
path('', homepageIndex, name='homepageIndex'),
]
# This might be needed, depending on your Django version
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