dynamicweb/datacenterlight/urls.py

34 lines
1.3 KiB
Python
Raw Normal View History

2016-12-20 23:05:20 +00:00
from django.conf.urls import url
from .views import (
# BetaProgramView, SuccessView, LandingProgramView,
IndexView, BetaAccessView, PaymentOrderView, OrderConfirmationView,
WhyDataCenterLightView, ContactUsView
)
2016-12-20 23:05:20 +00:00
2017-10-09 18:34:19 +00:00
from django.views.generic import TemplateView
2016-12-20 23:05:20 +00:00
urlpatterns = [
2017-07-18 20:09:02 +00:00
url(r'^$', IndexView.as_view(), name='index'),
url(r'^t/$', IndexView.as_view(), name='index_t'),
url(r'^g/$', IndexView.as_view(), name='index_g'),
url(r'^f/$', IndexView.as_view(), name='index_f'),
url(r'^l/$', IndexView.as_view(), name='index_l'),
url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(),
name='whydatacenterlight'),
2017-07-18 20:09:02 +00:00
url(r'^payment/?$', PaymentOrderView.as_view(), name='payment'),
url(r'^order-confirmation/?$', OrderConfirmationView.as_view(),
name='order_confirmation'),
2018-01-30 23:53:05 +00:00
# unused urls
# url(r'^beta-program/?$', BetaProgramView.as_view(), name='beta'),
# url(r'^landing/?$', LandingProgramView.as_view(), name='landing'),
# url(r'^order-success/?$', SuccessView.as_view(), name='order_success'),
2017-07-18 20:09:02 +00:00
url(r'^beta_access?$', BetaAccessView.as_view(), name='beta_access'),
url(r'^contact/?$', ContactUsView.as_view(), name='contact_us'),
url(r'glasfaser/?$',
TemplateView.as_view(template_name='ungleich_page/glasfaser.html'),
name='glasfaser'),
2016-12-20 23:05:20 +00:00
]