From 39fceeb45569ab0fe68039e346ed82be22b2c99d Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 29 Apr 2019 11:29:07 -0400 Subject: [PATCH] Add device field on cable search form (#3023) --- netbox/dcim/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netbox/dcim/forms.py b/netbox/dcim/forms.py index c81564b0c..71ad45409 100644 --- a/netbox/dcim/forms.py +++ b/netbox/dcim/forms.py @@ -2766,6 +2766,10 @@ class CableFilterForm(BootstrapMixin, forms.Form): required=False, widget=ColorSelect() ) + device = forms.CharField( + required=False, + label='Device name' + ) #