Commit 915c1280 authored by Andre Matthew Dumandan's avatar Andre Matthew Dumandan 😴

Fixed import statement in urls.py

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