1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #3706: Increase available_power maximum value on PowerFeed

This commit is contained in:
Jeremy Stretch
2019-12-11 21:12:18 -05:00
parent 7bbd9be389
commit 5aa17bc42a
4 changed files with 26 additions and 7 deletions

View File

@@ -1026,12 +1026,12 @@ class PowerPortTemplateCreateForm(ComponentForm):
maximum_draw = forms.IntegerField(
min_value=1,
required=False,
help_text="Maximum current draw (watts)"
help_text="Maximum power draw (watts)"
)
allocated_draw = forms.IntegerField(
min_value=1,
required=False,
help_text="Allocated current draw (watts)"
help_text="Allocated power draw (watts)"
)