2021-04-17 06:30:26 +00:00
|
|
|
from django.urls import path, include
|
2021-03-21 15:50:50 +00:00
|
|
|
|
2021-05-30 05:48:56 +00:00
|
|
|
from .views import HomeView, DemoTemplateView, ImpressumView, PrivacyNoticeView, TOSView
|
2021-03-21 15:50:50 +00:00
|
|
|
|
|
|
|
app_name = "frontend"
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('', HomeView.as_view(), name="home"),
|
2021-05-30 14:10:08 +00:00
|
|
|
path('api/places/', include("frontend.places.urls"), name="places"),
|
2021-05-30 05:41:29 +00:00
|
|
|
path('demo/template/', DemoTemplateView.as_view()),
|
2021-05-30 05:48:56 +00:00
|
|
|
path('impressum/', ImpressumView.as_view(), name="impressum"),
|
|
|
|
path('privacy/', PrivacyNoticeView.as_view(), name="privacy"),
|
|
|
|
path('tos/', TOSView.as_view(), name="tos"),
|
2021-03-21 15:50:50 +00:00
|
|
|
]
|