From 872fc05fa62a8c7541decf9fe758e118f4b70fb6 Mon Sep 17 00:00:00 2001 From: "M.Ravi" Date: Sun, 26 Nov 2023 09:25:58 +0530 Subject: [PATCH] Ignore indexview --- dynamicweb2/urls.py | 2 +- hosting/templates/hosting/includes/_navbar_transparent.html | 2 +- hosting/urls.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dynamicweb2/urls.py b/dynamicweb2/urls.py index ee5708b..7618306 100644 --- a/dynamicweb2/urls.py +++ b/dynamicweb2/urls.py @@ -19,5 +19,5 @@ from django.urls import re_path, path, include urlpatterns = [ path('admin/', admin.site.urls), - #re_path('hosting/', include('hosting.urls')) + re_path('hosting/', include('hosting.urls')) ] diff --git a/hosting/templates/hosting/includes/_navbar_transparent.html b/hosting/templates/hosting/includes/_navbar_transparent.html index 35c62fc..8098497 100755 --- a/hosting/templates/hosting/includes/_navbar_transparent.html +++ b/hosting/templates/hosting/includes/_navbar_transparent.html @@ -5,7 +5,7 @@
diff --git a/hosting/urls.py b/hosting/urls.py index ff43ecd..b16239b 100644 --- a/hosting/urls.py +++ b/hosting/urls.py @@ -19,7 +19,7 @@ from .views import ( app_name = 'hosting' urlpatterns = [ - re_path(r'/', IndexView.as_view(), name='index'), + #re_path(r'/', IndexView.as_view(), name='index'), re_path(r'login/?$', LoginView.as_view(), name='login'), re_path(r'signup/?$', SignupView.as_view(), name='signup'), re_path(r'signup-validate/?$', SignupValidateView.as_view(),