dynamicweb/ungleich_page/urls.py

10 lines
344 B
Python
Raw Normal View History

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