Blame view

src/core/pyros_django/scientific_program/urls.py 580 Bytes
d73ed066   ALEXIS-PC\alexis   adding scientific...
1
2
3
4
5
6
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'),
b40f05f1   Alexis Koralewski   Improving scienti...
7
    path('scientific_program_list', views.scientific_program_list,name='scientific_program_list'),
d73ed066   ALEXIS-PC\alexis   adding scientific...
8
9
10
11
    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'),
]