From a7bd28653f9199b8c6cadfde7c2586df855d6431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Leichtfu=C3=9F?= Date: Sat, 5 Sep 2020 10:39:02 +0200 Subject: [PATCH] renamed multiselectdropdownfilter template --- more_filters/filters.py | 4 ++-- ...nmultiselectfilter.html => multiselectdropdownfilter.html} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename more_filters/templates/{dropdownmultiselectfilter.html => multiselectdropdownfilter.html} (100%) diff --git a/more_filters/filters.py b/more_filters/filters.py index bf75046..1a7fa94 100644 --- a/more_filters/filters.py +++ b/more_filters/filters.py @@ -156,7 +156,7 @@ class MultiSelectRelatedFilter(MultiSelectMixin, admin.RelatedFieldListFilter): class MultiSelectDropdownFilter(MultiSelectFilter): - template = 'dropdownmultiselectfilter.html' + template = 'multiselectdropdownfilter.html' def choices(self, changelist): query_string = changelist.get_query_string({}, [self.lookup_kwarg, self.lookup_kwarg_isnull]) @@ -191,7 +191,7 @@ class MultiSelectDropdownFilter(MultiSelectFilter): class MultiSelectRelatedDropdownFilter(MultiSelectRelatedFilter): - template = 'dropdownmultiselectfilter.html' + template = 'multiselectdropdownfilter.html' def choices(self, changelist): query_string = changelist.get_query_string({}, [self.lookup_kwarg, self.lookup_kwarg_isnull]) diff --git a/more_filters/templates/dropdownmultiselectfilter.html b/more_filters/templates/multiselectdropdownfilter.html similarity index 100% rename from more_filters/templates/dropdownmultiselectfilter.html rename to more_filters/templates/multiselectdropdownfilter.html