Ignore indexview

This commit is contained in:
M.Ravi 2023-11-26 09:25:58 +05:30
parent d774d38554
commit 872fc05fa6
3 changed files with 3 additions and 3 deletions

View file

@ -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'))
]

View file

@ -5,7 +5,7 @@
<div class="topnav">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a id="logoWhite" class="navbar-brand topnav" href="{% url 'hosting:index' %}"><img src="{% static 'hosting/img/logo_white.svg' %}"></a>
<a id="logoWhite" class="navbar-brand topnav" href="{% url 'hosting:login' %}"><img src="{% static 'hosting/img/logo_white.svg' %}"></a>
</div>
</div>
<!-- /.container -->

View file

@ -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(),