WMDE
/
eva
forked from tohe/eva
7
1
Fork 0
eva/home/urls.py

9 lines
272 B
Python
Raw Normal View History

2025-04-14 08:34:30 +00:00
# home/urls.py
from django.urls import path
from . import views # import views from the current app
# Define the URL patterns for the 'home' app
urlpatterns = [
path('', views.index, name='home-index'), # Map the URL '' to the index view with the name 'home-index'
]