dynamicweb2/ungleich_page/urls.py
2023-12-06 16:46:19 +05:30

9 lines
350 B
Python
Executable file

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'),
]