更新
This commit is contained in:
10
Python-100-Days/Day41-55/oa/hrs/urls.py
Normal file
10
Python-100-Days/Day41-55/oa/hrs/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
|
||||
from hrs import views
|
||||
|
||||
urlpatterns = [
|
||||
path('depts', views.depts, name='depts'),
|
||||
# url('depts/emps/(?P<no>[0-9]+)', views.emps, name='empsindept'),
|
||||
path('depts/emps/<int:no>', views.emps, name='empsindept'),
|
||||
path('deldept/<int:no>', views.del_dept, name='ddel')
|
||||
]
|
||||
Reference in New Issue
Block a user