From 428ba16d2bebc6664d8da8fa0d98eb84893f327c Mon Sep 17 00:00:00 2001 From: George Lacey Date: Mon, 10 May 2021 02:36:09 +0100 Subject: [PATCH] Revert account url --- borgweb/borgweb/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgweb/borgweb/urls.py b/borgweb/borgweb/urls.py index 6a8a0a0..db47c5f 100644 --- a/borgweb/borgweb/urls.py +++ b/borgweb/borgweb/urls.py @@ -17,7 +17,7 @@ from django.contrib import admin from django.urls import include, path urlpatterns = [ - path('', include('django.contrib.auth.urls')), + path('accounts/', include('django.contrib.auth.urls')), path('admin/', admin.site.urls), path('', include('borg.urls')), ]