13 lines
435 B
Python
13 lines
435 B
Python
from django.urls import path
|
|
|
|
from .views import project, accreditation, travel, certificate, ExternView, done
|
|
|
|
urlpatterns = [
|
|
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')
|
|
]
|