fixed a typo in naming the function that maps requests to corresponding views.

parent a55a5fe8
Pipeline #2696 failed with stages
from django.urls import path
from .views import Index
urlpatterns = [
path('', aboutIndex, name='aboutIndex'),
path('', Index, name='Index'),
]
# 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