Add datacenterlight url: /add-ssh-key

This commit is contained in:
PCoder 2019-07-01 06:43:49 +05:30
parent 59a78dd8bb
commit d5d90e0790
1 changed files with 3 additions and 2 deletions

View File

@ -3,10 +3,9 @@ from django.views.generic import TemplateView, RedirectView
from .views import (
IndexView, PaymentOrderView, OrderConfirmationView,
WhyDataCenterLightView, ContactUsView
WhyDataCenterLightView, ContactUsView, AskSSHKeyView
)
urlpatterns = [
url(r'^$', IndexView.as_view(), name='index'),
url(r'^t/$', IndexView.as_view(), name='index_t'),
@ -20,6 +19,8 @@ urlpatterns = [
url(r'^payment/?$', PaymentOrderView.as_view(), name='payment'),
url(r'^order-confirmation/?$', OrderConfirmationView.as_view(),
name='order_confirmation'),
url(r'^add-ssh-key/?$', AskSSHKeyView.as_view(),
name='add_ssh_key'),
url(r'^contact/?$', ContactUsView.as_view(), name='contact_us'),
url(r'glasfaser/?$',
TemplateView.as_view(template_name='ungleich_page/glasfaser.html'),