]> wagnertech.de Git - SVBaL.git/blob - python/eh_util/eh_util/urls.py
0d8d93c19135112f003f8ec1205dab70c7675d5c
[SVBaL.git] / python / eh_util / eh_util / urls.py
1 """eh_util URL Configuration
2
3 The `urlpatterns` list routes URLs to views. For more information please see:
4     https://docs.djangoproject.com/en/2.2/topics/http/urls/
5 Examples:
6 Function views
7     1. Add an import:  from my_app import views
8     2. Add a URL to urlpatterns:  path('', views.home, name='home')
9 Class-based views
10     1. Add an import:  from other_app.views import Home
11     2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
12 Including another URLconf
13     1. Import the include() function: from django.urls import include, path
14     2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
15 """
16 from django.contrib import admin
17 from django.urls import include, path
18 import eh_util
19 from . import views
20
21 urlpatterns = [
22     path('', views.index),
23     path('accounts/login/', views.login),
24     path('admin/', admin.site.urls),
25     path('eh-abgleich/', include('eh_abgleich.urls')),
26 #    path('<slug:verein>/', views.vbasis),
27 #    path('<slug:verein>/ausweis/', include('ausweis.urls')),
28 #    path('<slug:verein>/kassenbrief/', include('kassenbrief.urls')),
29     path('<slug:verein>/', include('eh_app.urls')),
30 ]