|
|
@ -1,9 +1,12 @@ |
|
|
|
from django.urls import path |
|
|
|
|
|
|
|
from .views import intern, ExternView, done |
|
|
|
from .views import project, accreditation, travel, certificate, ExternView, done |
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
|
path('', intern, name='intern'), |
|
|
|
path('project', project, name='project'), |
|
|
|
path('accreditation', accreditation, name='accreditation'), |
|
|
|
path('travel', travel, name='travel'), |
|
|
|
path('certificate', certificate, name='certificate'), |
|
|
|
path('extern', ExternView.as_view(), name='extern'), |
|
|
|
path('saved', done, name='done') |
|
|
|
] |