created a urls.py file for About app

parents
from django.urls import path
from .views import aboutIndex
urlpatterns = [
path('', aboutIndex, name='aboutIndex'),
]
app_name = "About"
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