From 50fe95e713962376c44b6e00751f7c3725bd909c Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 10:52:22 +0300 Subject: [PATCH] Remove unused filters from admin panel configuration This change eliminates redundant filters like "category", "attributes__attribute", and "brand" from the admin panel. This helps simplify the interface and improve usability. --- core/admin.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/admin.py b/core/admin.py index 50f9d21a..c67c1c01 100644 --- a/core/admin.py +++ b/core/admin.py @@ -167,9 +167,6 @@ class ProductAdmin(BasicModelAdmin): list_filter = ( "is_active", - "category", - "attributes__attribute", - "brand", "tags__tag_name", "created", "modified",