Changed the name function that accepts a request and returns a string

parent 5785d06e
Pipeline #2727 failed with stages
from django.urls import path
from .views import index
from .views import contactIndex
urlpatterns = [
path('', index, name='index'),
path('', contactIndex, name='contactIndex'),
]
# This might be needed, depending on your Django version
app_name = "Contact"
\ 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