mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
Install custom admin
This commit is contained in:
parent
3569121703
commit
abd777b6dd
@ -5,3 +5,5 @@ mysqlclient==2.1.1
|
||||
django-tailwind==3.6.0
|
||||
django-search-views==0.3.7
|
||||
gunicorn==20.1.0
|
||||
django-jet-reboot==1.3.3
|
||||
google-api-python-client==1.4.1
|
||||
|
||||
@ -35,6 +35,8 @@ DEBUG = config["DEBUG"]
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
"jet.dashboard",
|
||||
"jet",
|
||||
"django.contrib.admin",
|
||||
"django.contrib.auth",
|
||||
"django.contrib.contenttypes",
|
||||
|
||||
@ -18,6 +18,8 @@ from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path("jet/", include("jet.urls", "jet")),
|
||||
path("jet/dashboard/", include("jet.dashboard.urls", "jet-dashboard")),
|
||||
path("admin/", admin.site.urls),
|
||||
path("", include("main.urls")),
|
||||
path("auth/", include("account.urls")),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user