urls.py
580 Bytes
from django.conf.urls import url
from django.urls import path
from . import views
urlpatterns = [
path('create_scientific_program', views.create_sp,name='create_scientific_program'),
path('scientific_program_list', views.scientific_program_list,name='scientific_program_list'),
path('edit_scientific_program/<int:id>/', views.edit_sp,name='edit_scientific_program'),
path('detail_scientific_program/<int:id>/', views.detail_sp,name='detail_scientific_program'),
path('delete_scientific_program/<int:id>/', views.delete_sp,name='delete_scientific_program'),
]