8 lines
183 B
Python
8 lines
183 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.student_form, name='student_form'),
|
|
path('list/', views.student_list, name='student_list'),
|
|
]
|