dynamicweb2/ungleich_page/urls.py

10 lines
350 B
Python
Raw Normal View History

2023-12-06 11:16:19 +00:00
from django.urls import re_path
from .views import ContactView, LandingView
from django.utils.translation import gettext_lazy as _
urlpatterns = [
re_path(r'^$', LandingView.as_view(), name='landing'),
# url(r'^ungleich_page/?$', LandingView.as_view(), name='landing'),
re_path(_(r'contact/$'), ContactView.as_view(), name='contact'),
]