diff --git a/README.md b/README.md index 492e5bc..caa0244 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,7 @@ please use YunoHost ;) * [**dev**](https://github.com/jedie/PyInventory/compare/v0.19.2...main) + * Bugfix the "parent" field on location admin page * tbc * [v0.19.2 - 17.08.2023](https://github.com/jedie/PyInventory/compare/v0.19.1...v0.19.2) * Bugfix packaging and missing "requests" dependencies diff --git a/inventory/admin/location.py b/inventory/admin/location.py index 1448144..fbf7976 100644 --- a/inventory/admin/location.py +++ b/inventory/admin/location.py @@ -70,7 +70,6 @@ class LocationModelAdmin(ImportExportMixin, BaseUserAdmin): ), (_('Items in this Location'), {'fields': ('items',)}), ) - autocomplete_fields = ('parent',) readonly_fields = ('id', 'create_dt', 'update_dt', 'user', 'item_count', 'items') list_display_links = ('location',) list_filter = (LimitTreeDepthListFilter,) diff --git a/inventory_project/settings/local.py b/inventory_project/settings/local.py index 2b6b663..71f98a5 100644 --- a/inventory_project/settings/local.py +++ b/inventory_project/settings/local.py @@ -26,6 +26,8 @@ INTERNAL_IPS = ('127.0.0.1', '0.0.0.0', 'localhost') ALLOWED_HOSTS = INTERNAL_IPS +SECURE_SSL_REDIRECT = False + DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', @@ -41,7 +43,7 @@ print(f'Use Database: {DATABASES["default"]["NAME"]!r}', file=__sys.stderr) # Download map via geotiler in inventory.gpx_tools.gpxpy2map.generate_map MAP_DOWNLOAD = True -if __os.environ.get('AUTOLOGIN') == '1': +if __os.environ.get('AUTOLOGIN') != '0': # Auto login for dev. server: MIDDLEWARE = MIDDLEWARE.copy() MIDDLEWARE += ['django_tools.middlewares.local_auto_login.AlwaysLoggedInAsSuperUserMiddleware']