From 5688a45cc3f9539778f89eba65e157090abf68fd Mon Sep 17 00:00:00 2001 From: Henrik Mildner Date: Fri, 17 Jan 2025 17:17:26 +0100 Subject: [PATCH] create home (accounts-app) template, Sqlite3 database added in gitignore --- core/accounts/templates/accounts/home.html | 0 core/core/urls.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 core/accounts/templates/accounts/home.html diff --git a/core/accounts/templates/accounts/home.html b/core/accounts/templates/accounts/home.html new file mode 100644 index 0000000..e69de29 diff --git a/core/core/urls.py b/core/core/urls.py index 2ad69db..382dba1 100644 --- a/core/core/urls.py +++ b/core/core/urls.py @@ -15,7 +15,7 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin # type: ignore -from django.urls import path +from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls),