Commit 3bcecbcd by Bach Dániel

dashboard: fix VmSaveForm

parent 2353aacc
......@@ -51,6 +51,12 @@ class VmSaveForm(forms.Form):
name = forms.CharField(max_length=100, label=_('Name'),
help_text=_('Human readable name of template.'))
@property
def helper(self):
helper = FormHelper(self)
helper.form_tag = False
return helper
class VmCustomizeForm(forms.Form):
name = forms.CharField()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment