7 lines
251 B
Python
7 lines
251 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("all_students/", views.StudentListCreate.as_view(), name="student-view-createlist"),
|
|
path("<int:w_number>/", views.StudentRetrieveUpdateDestroy.as_view(), name="update"),
|
|
] |