created a urls file for Contact app

parent 0d04c9e5
from django.urls import path
from .views import contactIndex
urlpatterns = [
path('', contactIndex, name='contactIndex'),
]
# This might be needed, depending on your Django version
app_name = "Contact"
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