2016-12-20 23:05:20 +00:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
2017-10-10 15:28:11 +00:00
|
|
|
from .views import (
|
2018-02-20 10:58:29 +00:00
|
|
|
IndexView, LandingProgramView,
|
2017-10-10 15:28:11 +00:00
|
|
|
SuccessView, PaymentOrderView, OrderConfirmationView,
|
2017-08-29 19:02:31 +00:00
|
|
|
WhyDataCenterLightView, ContactUsView
|
2017-10-10 15:28:11 +00:00
|
|
|
)
|
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'),
|
2017-09-06 18:13:30 +00:00
|
|
|
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'),
|
2017-09-06 20:05:52 +00:00
|
|
|
url(r'^l/$', IndexView.as_view(), name='index_l'),
|
2017-08-29 08:43:30 +00:00
|
|
|
url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(),
|
|
|
|
name='whydatacenterlight'),
|
2017-07-18 20:09:02 +00:00
|
|
|
url(r'^landing/?$', LandingProgramView.as_view(), name='landing'),
|
|
|
|
url(r'^payment/?$', PaymentOrderView.as_view(), name='payment'),
|
2017-08-29 08:43:30 +00:00
|
|
|
url(r'^order-confirmation/?$', OrderConfirmationView.as_view(),
|
|
|
|
name='order_confirmation'),
|
2017-07-18 20:09:02 +00:00
|
|
|
url(r'^order-success/?$', SuccessView.as_view(), name='order_success'),
|
2017-08-27 07:49:05 +00:00
|
|
|
url(r'^contact/?$', ContactUsView.as_view(), name='contact_us'),
|
2017-10-10 15:28:11 +00:00
|
|
|
url(r'glasfaser/?$',
|
|
|
|
TemplateView.as_view(template_name='ungleich_page/glasfaser.html'),
|
|
|
|
name='glasfaser'),
|
2016-12-20 23:05:20 +00:00
|
|
|
]
|