From bc83608e58e28bea44e8897ecc99bf8953d2c2c9 Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Sun, 21 Mar 2021 03:14:33 +0100 Subject: [PATCH] Bugfix: Remove item inline as it leads to timeouts --- inventory/admin/containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory/admin/containers.py b/inventory/admin/containers.py index 72fe966..11f629a 100644 --- a/inventory/admin/containers.py +++ b/inventory/admin/containers.py @@ -61,7 +61,7 @@ class BoxAdmin(NestedModelAdmin): readonly_fields = ['created_at', 'changed_at'] list_filter = ['container'] search_fields = ['name', 'description'] - inlines = [BoxInlineAdmin, ItemInlineAdmin] + inlines = [BoxInlineAdmin] filter_horizontal = ('tags',) def view_on_site(self, obj):