mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-10 18:39:36 -06:00
Remove comparison symbols from numeric filter labels
This commit is contained in:
parent
197f94a6ef
commit
1923d889f5
@ -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')),
|
||||
],
|
||||
|
||||
Loading…
Reference in New Issue
Block a user