2020-09-22 10:21:05 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
2020-10-06 09:42:44 +00:00
|
|
|
from .views import project, accreditation, travel, certificate, ExternView, done
|
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'),
|
|
|
|
path('saved', done, name='done')
|
2020-09-22 10:21:05 +00:00
|
|
|
]
|