Remove comparison symbols from numeric filter labels

This commit is contained in:
Jason Novinger 2025-12-03 18:51:58 -06:00
parent 197f94a6ef
commit 1923d889f5

View File

@ -39,20 +39,20 @@ FORM_FIELD_LOOKUPS = {
forms.IntegerField: [
('exact', _('is')),
('n', _('is not')),
('gt', _('greater than (>)')),
('gte', _('at least (≥)')),
('lt', _('less than (<)')),
('lte', _('at most (≤)')),
('gt', _('greater than')),
('gte', _('at least')),
('lt', _('less than')),
('lte', _('at most')),
(MODIFIER_EMPTY_TRUE, _('is empty')),
(MODIFIER_EMPTY_FALSE, _('is not empty')),
],
forms.DecimalField: [
('exact', _('is')),
('n', _('is not')),
('gt', _('greater than (>)')),
('gte', _('at least (≥)')),
('lt', _('less than (<)')),
('lte', _('at most (≤)')),
('gt', _('greater than')),
('gte', _('at least')),
('lt', _('less than')),
('lte', _('at most')),
(MODIFIER_EMPTY_TRUE, _('is empty')),
(MODIFIER_EMPTY_FALSE, _('is not empty')),
],