| 
									
										
										
										
											2016-12-20 18:05:20 -05:00
										 |  |  | from django.conf.urls import url | 
					
						
							| 
									
										
										
										
											2018-03-22 03:11:20 +05:30
										 |  |  | from django.views.generic import TemplateView, RedirectView | 
					
						
							| 
									
										
										
										
											2016-12-20 18:05:20 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-01 08:09:37 +05:30
										 |  |  | from utils.views import AskSSHKeyView | 
					
						
							| 
									
										
										
										
											2017-10-10 20:58:11 +05:30
										 |  |  | from .views import ( | 
					
						
							| 
									
										
										
										
											2018-02-09 06:50:17 +05:30
										 |  |  |     IndexView, PaymentOrderView, OrderConfirmationView, | 
					
						
							| 
									
										
										
										
											2019-07-01 08:09:37 +05:30
										 |  |  |     WhyDataCenterLightView, ContactUsView | 
					
						
							| 
									
										
										
										
											2017-10-10 20:58:11 +05:30
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-12-20 18:05:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | urlpatterns = [ | 
					
						
							| 
									
										
										
										
											2018-03-22 03:30:43 +05:30
										 |  |  |     url(r'^$', IndexView.as_view(), name='index'), | 
					
						
							| 
									
										
										
										
											2017-09-06 20:13:30 +02: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 22:05:52 +02:00
										 |  |  |     url(r'^l/$', IndexView.as_view(), name='index_l'), | 
					
						
							| 
									
										
										
										
											2018-04-07 13:13:53 +02:00
										 |  |  |     url(r'^new/$', RedirectView.as_view(url='/cms/'), | 
					
						
							| 
									
										
										
										
											2018-03-22 03:30:43 +05:30
										 |  |  |         name='cms_index'), | 
					
						
							| 
									
										
										
										
											2017-08-29 10:43:30 +02:00
										 |  |  |     url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(), | 
					
						
							|  |  |  |         name='whydatacenterlight'), | 
					
						
							| 
									
										
										
										
											2017-07-18 23:09:02 +03:00
										 |  |  |     url(r'^payment/?$', PaymentOrderView.as_view(), name='payment'), | 
					
						
							| 
									
										
										
										
											2017-08-29 10:43:30 +02:00
										 |  |  |     url(r'^order-confirmation/?$', OrderConfirmationView.as_view(), | 
					
						
							|  |  |  |         name='order_confirmation'), | 
					
						
							| 
									
										
										
										
											2019-07-01 06:43:49 +05:30
										 |  |  |     url(r'^add-ssh-key/?$', AskSSHKeyView.as_view(), | 
					
						
							|  |  |  |         name='add_ssh_key'), | 
					
						
							| 
									
										
										
										
											2017-08-27 13:19:05 +05:30
										 |  |  |     url(r'^contact/?$', ContactUsView.as_view(), name='contact_us'), | 
					
						
							| 
									
										
										
										
											2017-10-10 20:58:11 +05:30
										 |  |  |     url(r'glasfaser/?$', | 
					
						
							|  |  |  |         TemplateView.as_view(template_name='ungleich_page/glasfaser.html'), | 
					
						
							|  |  |  |         name='glasfaser'), | 
					
						
							| 
									
										
										
										
											2016-12-20 18:05:20 -05:00
										 |  |  | ] |