You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
435 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. from django.urls import path
  2. from .views import project, accreditation, travel, certificate, ExternView, done
  3. urlpatterns = [
  4. path('project', project, name='project'),
  5. path('accreditation', accreditation, name='accreditation'),
  6. path('travel', travel, name='travel'),
  7. path('certificate', certificate, name='certificate'),
  8. path('extern', ExternView.as_view(), name='extern'),
  9. path('saved', done, name='done')
  10. ]