dynamicweb/ungleich_page/urls.py

10 lines
344 B
Python
Raw Normal View History

from django.conf.urls import url
2016-04-12 22:03:18 -05:00
from .views import ContactView, LandingView
from django.utils.translation import ugettext_lazy as _
urlpatterns = [
2016-04-24 23:16:38 +02:00
url(r'^$', LandingView.as_view(), name='landing'),
# url(r'^ungleich_page/?$', LandingView.as_view(), name='landing'),
2016-04-24 01:15:58 +02:00
url(_(r'contact/$'), ContactView.as_view(), name='contact'),
]