ソースを参照

Fix global search placeholder text

Jeremy Stretch 8 年 前
コミット
fde47133da
1 ファイル変更1 行追加1 行削除
  1. 1 1
      netbox/netbox/forms.py

+ 1 - 1
netbox/netbox/forms.py

@@ -35,7 +35,7 @@ OBJ_TYPE_CHOICES = (
 
 class SearchForm(BootstrapMixin, forms.Form):
     q = forms.CharField(
-        label='Query', widget=forms.TextInput(attrs={'style': 'width: 350px'})
+        label='Search', widget=forms.TextInput(attrs={'style': 'width: 350px'})
     )
     obj_type = forms.ChoiceField(
         choices=OBJ_TYPE_CHOICES, required=False, label='Type'