From 17be01370b5b22c19685a7b9d6a61a27b213b91e Mon Sep 17 00:00:00 2001 From: Arvind Tiwari Date: Wed, 23 Aug 2017 23:52:09 +0530 Subject: [PATCH] removed test url --- hosting/urls.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/hosting/urls.py b/hosting/urls.py index c5189940..23709904 100644 --- a/hosting/urls.py +++ b/hosting/urls.py @@ -1,6 +1,5 @@ from django.conf.urls import url from django.contrib.auth import views as auth_views -from django.views.generic import TemplateView from .views import DjangoHostingView, RailsHostingView, PaymentVMView,\ NodeJSHostingView, LoginView, SignupView, SignupValidateView, SignupValidatedView, IndexView, \ @@ -11,7 +10,6 @@ from .views import DjangoHostingView, RailsHostingView, PaymentVMView,\ SSHKeyDeleteView, SSHKeyCreateView, SSHKeyListView, SSHKeyChoiceView urlpatterns = [ - # url(r'test/?$', TemplateView.as_view(template_name='hosting/virtual_machine_detail.html')), url(r'index/?$', IndexView.as_view(), name='index'), url(r'django/?$', DjangoHostingView.as_view(), name='djangohosting'), url(r'nodejs/?$', NodeJSHostingView.as_view(), name='nodejshosting'),