fixed the naming conventions of the function that maps requests to corresponding app views.

parent 802fb8c2
Pipeline #2728 failed with stages
from django.urls import path
from .views import Index
from .views import aboutIndex
urlpatterns = [
path('', Index, name='Index'),
path('', aboutIndex, name='aboutIndex'),
]
# This might be needed, depending on your Django version
app_name = "About"
\ 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