codescraftman / about / urls.py
urls.py
Raw
# about/urls.py
from django.urls import path
from . import views

app_name = 'about'

urlpatterns = [
    path('', views.about_view, name='index'),  # Update this to use 'about_view'
]