Skip to content

Commit

Permalink
add back unfold
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Jun 6, 2024
1 parent 6744aa9 commit 39af9e5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@
"django.contrib.messages",
"django.contrib.staticfiles",
# "django.contrib.humanize", # Handy template tags
"django.contrib.admin",
"django.forms",
]

ADMIN_APPS = [
"unfold",
"django.contrib.admin",
]

THIRD_PARTY_APPS = [
"crispy_forms",
"crispy_tailwind",
Expand Down Expand Up @@ -108,7 +112,7 @@
"theme",
]
# https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
INSTALLED_APPS = DJANGO_APPS + ADMIN_APPS + THIRD_PARTY_APPS + LOCAL_APPS

# MIGRATIONS
# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 39af9e5

Please sign in to comment.