Rename attribute `_form` --> `form_class`
This commit is contained in:
parent
e15e457481
commit
b103a1a51d
|
@ -290,10 +290,10 @@ class TagUnlinkDeviceView(View):
|
||||||
class NewActionView(View):
|
class NewActionView(View):
|
||||||
methods = ['POST']
|
methods = ['POST']
|
||||||
decorators = [login_required]
|
decorators = [login_required]
|
||||||
_form = NewActionForm
|
form_class = NewActionForm
|
||||||
|
|
||||||
def dispatch_request(self):
|
def dispatch_request(self):
|
||||||
self.form = self._form()
|
self.form = self.form_class()
|
||||||
|
|
||||||
if self.form.validate_on_submit():
|
if self.form.validate_on_submit():
|
||||||
instance = self.form.save()
|
instance = self.form.save()
|
||||||
|
@ -313,10 +313,10 @@ class NewActionView(View):
|
||||||
|
|
||||||
class NewAllocateView(NewActionView, DeviceListMix):
|
class NewAllocateView(NewActionView, DeviceListMix):
|
||||||
methods = ['POST']
|
methods = ['POST']
|
||||||
_form = AllocateForm
|
form_class = AllocateForm
|
||||||
|
|
||||||
def dispatch_request(self):
|
def dispatch_request(self):
|
||||||
self.form = self._form()
|
self.form = self.form_class()
|
||||||
|
|
||||||
if self.form.validate_on_submit():
|
if self.form.validate_on_submit():
|
||||||
instance = self.form.save()
|
instance = self.form.save()
|
||||||
|
|
Reference in New Issue