10 lines
350 B
Python
10 lines
350 B
Python
|
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'),
|
||
|
]
|