diff --git a/netbox/utilities/templatetags/helpers.py b/netbox/utilities/templatetags/helpers.py index 5086265db..db4d59114 100644 --- a/netbox/utilities/templatetags/helpers.py +++ b/netbox/utilities/templatetags/helpers.py @@ -92,14 +92,6 @@ def url_name(model, action): return None -@register.filter() -def contains(value, arg): - """ - Test whether a value contains any of a given set of strings. `arg` should be a comma-separated list of strings. - """ - return any(s in value for s in arg.split(',')) - - @register.filter() def bettertitle(value): """