2024-08-04 23:54:32 +05:00
|
|
|
from django.urls import path
|
2019-12-12 11:04:05 +05:00
|
|
|
from . import views
|
2017-10-24 19:16:36 +05:00
|
|
|
|
|
|
|
|
urlpatterns = [
|
2024-08-04 23:54:32 +05:00
|
|
|
path('', views.packagesHome, name='packagesHome'),
|
|
|
|
|
path('createPackage/', views.createPacakge, name='createPackage'),
|
|
|
|
|
path('deletePackage/', views.deletePacakge, name='deletePackage'),
|
|
|
|
|
path('modifyPackage/', views.modifyPackage, name='modifyPackage'),
|
|
|
|
|
path('listPackages/', views.listPackages, name='listPackages'),
|
|
|
|
|
path('fetchPackagesTable/', views.fetchPackagesTable, name='fetchPackagesTable'),
|
2017-10-24 19:16:36 +05:00
|
|
|
|
2024-08-04 23:54:32 +05:00
|
|
|
# Package Modification URLs
|
|
|
|
|
path('submitPackage/', views.submitPackage, name='submitPackage'),
|
|
|
|
|
path('submitDelete/', views.submitDelete, name='submitDelete'),
|
|
|
|
|
path('submitModify/', views.submitModify, name='submitModify'),
|
|
|
|
|
path('saveChanges/', views.saveChanges, name='saveChanges'),
|
|
|
|
|
]
|