2020-09-22 10:21:05 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
2020-10-21 07:54:12 +00:00
|
|
|
from .views import project, accreditation, travel, certificate, ExternView, \
|
|
|
|
done, authorize, deny, InternView
|
2020-09-22 10:21:05 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-10-06 09:42:44 +00:00
|
|
|
path('project', project, name='project'),
|
|
|
|
path('accreditation', accreditation, name='accreditation'),
|
|
|
|
path('travel', travel, name='travel'),
|
|
|
|
path('certificate', certificate, name='certificate'),
|
2020-10-01 10:08:02 +00:00
|
|
|
path('extern', ExternView.as_view(), name='extern'),
|
2020-10-21 07:54:12 +00:00
|
|
|
path('intern', InternView.as_view(), name='intern'),
|
2020-10-20 06:06:36 +00:00
|
|
|
path('saved', done, name='done'),
|
2020-10-20 06:29:51 +00:00
|
|
|
path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'),
|
|
|
|
path('deny/<str:choice>/<int:pk>', deny, name='deny')
|
2020-09-22 10:21:05 +00:00
|
|
|
]
|