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.
30 lines
1.3 KiB
30 lines
1.3 KiB
from django.urls import path
|
|
from django.views.generic.base import RedirectView
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
|
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('termin/<tid>', views.termin, name='termin'),
|
|
path('impressum', views.impressum, name='impressum'),
|
|
path('wildnispaedagogik', views.wildnispaedagogik, name='wildnispaedagogik'),
|
|
path('lamatour', views.lamatour, name='lamatour'),
|
|
path('externereferentin', views.externereferentin, name='externereferentin'),
|
|
path('kinderfreizeit', views.kinderfreizeit, name='kinderfreizeit'),
|
|
path('honigmassage', views.honigmassage, name='honigmassage'),
|
|
path('psychologischeberatung', views.psychologischeberatung, name='psychologischeberatung'),
|
|
path('pflanzenheilkunde', views.pflanzenheilkunde, name='pflanzenheilkunde'),
|
|
path('ohrakupunktur', views.ohrakupunktur, name='ohrakupunktur'),
|
|
path('kontakt/', views.contactView, name='kontakt'),
|
|
path('success/', views.successView, name='success'),
|
|
path(
|
|
"favicon.ico",
|
|
RedirectView.as_view(url=staticfiles_storage.url("img/favicon.ico")),
|
|
),
|
|
]
|
|
handler404 = 'hpst.views.page_not_found_view'
|
|
handler500 = 'hpst.views.error_view'
|
|
handler403 = 'hpst.views.permission_denied_view'
|
|
handler400 = 'hpst.views.bad_request_view'
|
|
|