From ecc94ec1740adefe0de1860649d5f11fc05f8655 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Mon, 10 May 2021 02:08:57 +0100 Subject: [PATCH] Move account urls to root --- 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 db47c5f..6a8a0a0 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('accounts/', include('django.contrib.auth.urls')), + path('', include('django.contrib.auth.urls')), path('admin/', admin.site.urls), path('', include('borg.urls')), ]