Explorar el Código

Fix DNS name label in IP address bulk edit form

jeremystretch hace 4 años
padre
commit
67aeb380e7
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      netbox/ipam/forms/bulk_edit.py

+ 2 - 1
netbox/ipam/forms/bulk_edit.py

@@ -302,7 +302,8 @@ class IPAddressBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
     )
     dns_name = forms.CharField(
         max_length=255,
-        required=False
+        required=False,
+        label='DNS name'
     )
     description = forms.CharField(
         max_length=100,