from django.urls import path, include from django.views.i18n import JavaScriptCatalog from .views import ( index, done, export, authorize, deny, ApplicationView, ApplicationStartView, ProjectFundingInfoView, ) urlpatterns = [ path('', index, name='index'), path('saved', done, name='done'), path('export', export, name='export'), path('authorize//', authorize, name='authorize'), path('deny//', deny, name='deny'), path('extern/', include([ path('', ApplicationStartView.as_view(), name='extern'), path('projektfoerderung-ab-1000/', ProjectFundingInfoView.as_view(), name='projektfoerderung-ab-1000'), path('/', ApplicationView.as_view(), name='extern'), ])), # JavaScript translations for date widgets, etc. path('jsi18n/', JavaScriptCatalog.as_view(), name='jsi18n'), ]