Building a new route

This commit is contained in:
2022-01-02 17:42:20 +01:00
parent f264d675ee
commit da97b7ef60
2 changed files with 9 additions and 2 deletions

6
projects/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from projects import views
urlpatterns = [
path("", views.project_list),
]