2021-02-05 07:01:45 +00:00
|
|
|
"""urlaubsauktion URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/3.1/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Import the include() function: from django.urls import include, path
|
|
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
|
|
"""
|
2021-03-24 06:43:05 +00:00
|
|
|
from .admin import joker_admin
|
2021-03-21 15:50:50 +00:00
|
|
|
from django.urls import path, include
|
2021-02-05 07:01:45 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2021-03-24 06:43:05 +00:00
|
|
|
path('admin_area/', joker_admin.urls),
|
2021-03-22 17:42:07 +00:00
|
|
|
path('', include('public.urls'), name="frontend"),
|
|
|
|
path('auth/', include('localauth.urls'), name="localauth"),
|
|
|
|
path('auction/', include('auction.urls'), name="auction"),
|
|
|
|
path('payment/', include('payment.urls'), name="payment"),
|
2021-03-23 18:23:04 +00:00
|
|
|
path('partners/', include('partners.urls'), name="partners"),
|
2021-03-24 06:43:05 +00:00
|
|
|
path('clients/', include('clients.urls'), name="clients"),
|
2021-02-05 07:01:45 +00:00
|
|
|
]
|