|
|
|
@ -55,7 +55,7 @@ urlpatterns = [ |
|
|
|
path('login/', CustomLoginView.as_view(), name='custom-login'), |
|
|
|
path('login/', CustomLoginView.as_view(), name='custom-login'), |
|
|
|
path('custom_password_change/', views.custom_password_change, name='custom_password_change'), |
|
|
|
path('custom_password_change/', views.custom_password_change, name='custom_password_change'), |
|
|
|
path('logout/', views.custom_logout, name='custom_logout'), |
|
|
|
path('logout/', views.custom_logout, name='custom_logout'), |
|
|
|
path('/utils/xls-to-csv/', views.xls_to_csv, name='xls-to-csv'), |
|
|
|
path('utils/xls-to-csv/', views.xls_to_csv, name='xls-to-csv'), |
|
|
|
path('signup/', views.signup, name='signup'), # URL pattern for signup |
|
|
|
path('signup/', views.signup, name='signup'), # URL pattern for signup |
|
|
|
# path('profile/', views.profile, name='profile'), # URL pattern for signup |
|
|
|
# path('profile/', views.profile, name='profile'), # URL pattern for signup |
|
|
|
path('my-tournaments/', views.my_tournaments, name='my-tournaments'), # URL pattern for signup |
|
|
|
path('my-tournaments/', views.my_tournaments, name='my-tournaments'), # URL pattern for signup |
|
|
|
|