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

Introduced a common template for object editing

This commit is contained in:
Jeremy Stretch
2016-05-09 14:11:53 -04:00
parent 171f2c008f
commit 950a6ea7b2
14 changed files with 250 additions and 612 deletions

View File

@@ -17,6 +17,9 @@ class VRFForm(forms.ModelForm, BootstrapMixin):
class Meta:
model = VRF
fields = ['name', 'rd', 'description']
labels = {
'rd': "RD",
}
help_texts = {
'rd': "Route distinguisher in any format",
}