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.

14 lines
559 B

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, authorize, deny
  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. path('authorize/<int:pk>', authorize, name='authorize'),
  11. path('deny/<int:pk>', deny, name='deny')
  12. ]