Remove django-suit
This commit is contained in:
Generated
+1
-13
@@ -258,14 +258,6 @@ python-versions = "*"
|
|||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
Django = ">=2.1"
|
Django = ">=2.1"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "django-suit"
|
|
||||||
version = "0.2.28"
|
|
||||||
description = "Modern theme for Django admin interface."
|
|
||||||
category = "main"
|
|
||||||
optional = false
|
|
||||||
python-versions = "*"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "django-tables2"
|
name = "django-tables2"
|
||||||
version = "2.4.1"
|
version = "2.4.1"
|
||||||
@@ -893,7 +885,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.9"
|
python-versions = "^3.9"
|
||||||
content-hash = "2e1fed695d241a00bf66c28b725b4a933a42158af8a36ffbbd1910cf80cd1858"
|
content-hash = "f51b15fd5c0f2623c253aba571dbfc587eb8323676bd7a59ee06a97d1c3f07a8"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
asgiref = []
|
asgiref = []
|
||||||
@@ -938,10 +930,6 @@ django-polymorphic = [
|
|||||||
{file = "django-polymorphic-3.1.0.tar.gz", hash = "sha256:d6955b5308bf6e41dcb22ba7c96f00b51dfa497a8a5ab1e9c06c7951bf417bf8"},
|
{file = "django-polymorphic-3.1.0.tar.gz", hash = "sha256:d6955b5308bf6e41dcb22ba7c96f00b51dfa497a8a5ab1e9c06c7951bf417bf8"},
|
||||||
{file = "django_polymorphic-3.1.0-py3-none-any.whl", hash = "sha256:08bc4f4f4a773a19b2deced5a56deddd1ef56ebd15207bf4052e2901c25ef57e"},
|
{file = "django_polymorphic-3.1.0-py3-none-any.whl", hash = "sha256:08bc4f4f4a773a19b2deced5a56deddd1ef56ebd15207bf4052e2901c25ef57e"},
|
||||||
]
|
]
|
||||||
django-suit = [
|
|
||||||
{file = "django-suit-0.2.28.tar.gz", hash = "sha256:bacd8a079fcc08deb6efd0d7f60241e3c319526939ae1abe8ccfbc1b03e97104"},
|
|
||||||
{file = "django_suit-0.2.28-py2.py3-none-any.whl", hash = "sha256:256412597ac8e9461780542eebb12b37f65ff702bf23de23d07d245510c64ff2"},
|
|
||||||
]
|
|
||||||
django-tables2 = []
|
django-tables2 = []
|
||||||
djangorestframework = [
|
djangorestframework = [
|
||||||
{file = "djangorestframework-3.13.1-py3-none-any.whl", hash = "sha256:24c4bf58ed7e85d1fe4ba250ab2da926d263cd57d64b03e8dcef0ac683f8b1aa"},
|
{file = "djangorestframework-3.13.1-py3-none-any.whl", hash = "sha256:24c4bf58ed7e85d1fe4ba250ab2da926d263cd57d64b03e8dcef0ac683f8b1aa"},
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ django-auditlog = "^2.1.1"
|
|||||||
django-phonenumber-field = {version = "^6.3.0", extras = ["phonenumbers"]}
|
django-phonenumber-field = {version = "^6.3.0", extras = ["phonenumbers"]}
|
||||||
django-autocomplete-light = "^3.4.1"
|
django-autocomplete-light = "^3.4.1"
|
||||||
six = "^1.12.0"
|
six = "^1.12.0"
|
||||||
django-suit = "^0.2.26"
|
|
||||||
pyexcel = "^0.5.14"
|
pyexcel = "^0.5.14"
|
||||||
pyexcel-xlsx = "^0.5.8"
|
pyexcel-xlsx = "^0.5.8"
|
||||||
django-import-export = "^2.8.0"
|
django-import-export = "^2.8.0"
|
||||||
|
|||||||
@@ -23,10 +23,6 @@ MEDIA_URL = "/media/"
|
|||||||
LOGIN_URL = "/login/"
|
LOGIN_URL = "/login/"
|
||||||
LOGIN_REDIRECT_URL = "/admin"
|
LOGIN_REDIRECT_URL = "/admin"
|
||||||
|
|
||||||
SUIT_CONFIG = {
|
|
||||||
"ADMIN_NAME": "SIK Admin",
|
|
||||||
}
|
|
||||||
|
|
||||||
# Might need to be changed to JSON serializer
|
# Might need to be changed to JSON serializer
|
||||||
# https://docs.djangoproject.com/en/4.0/topics/http/sessions/#django.contrib.sessions.serializers.JSONSerializer
|
# https://docs.djangoproject.com/en/4.0/topics/http/sessions/#django.contrib.sessions.serializers.JSONSerializer
|
||||||
SESSION_SERIALIZER = "django.contrib.sessions.serializers.PickleSerializer"
|
SESSION_SERIALIZER = "django.contrib.sessions.serializers.PickleSerializer"
|
||||||
@@ -94,7 +90,6 @@ WSGI_APPLICATION = "sikweb.wsgi.application"
|
|||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
"modeltranslation", # has to be before admin for translation admin to work
|
"modeltranslation", # has to be before admin for translation admin to work
|
||||||
"suit",
|
|
||||||
"dal",
|
"dal",
|
||||||
"dal_select2",
|
"dal_select2",
|
||||||
"django.contrib.admin",
|
"django.contrib.admin",
|
||||||
@@ -141,7 +136,6 @@ TEMPLATES = [
|
|||||||
"DIRS": ["templates"],
|
"DIRS": ["templates"],
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"loaders": [
|
"loaders": [
|
||||||
"app_namespace.Loader",
|
|
||||||
"django.template.loaders.filesystem.Loader",
|
"django.template.loaders.filesystem.Loader",
|
||||||
"django.template.loaders.app_directories.Loader",
|
"django.template.loaders.app_directories.Loader",
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user