Browse Source

added some urls

master
Benni Baermann 4 years ago
parent
commit
73225ea284
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      input/urls.py

+ 5
- 2
input/urls.py View File

@ -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')
]

Loading…
Cancel
Save