diff --git a/netbox/utilities/forms/mixins.py b/netbox/utilities/forms/mixins.py index 315184325..e1f16aabc 100644 --- a/netbox/utilities/forms/mixins.py +++ b/netbox/utilities/forms/mixins.py @@ -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')), ],