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

Standardized inheritance order of BootstrapMixin

This commit is contained in:
Jeremy Stretch
2016-12-21 14:15:18 -05:00
parent 1ed5389703
commit 37b2ff02e7
7 changed files with 70 additions and 70 deletions

View File

@ -385,7 +385,7 @@ class BootstrapMixin(forms.BaseForm):
field.widget.attrs['placeholder'] = field.label
class ConfirmationForm(forms.Form, BootstrapMixin):
class ConfirmationForm(BootstrapMixin, forms.Form):
confirm = forms.BooleanField(required=True)