Commit 71c1adc9 by Máhonfai Bálint

Fix missing submit button

parent c263370d
Pipeline #1427 passed with stage
in 0 seconds
......@@ -271,6 +271,12 @@ class GroupImportForm(NoFormTagMixin, forms.Form):
choices=self.choices
)
@property
def helper(self):
helper = super(GroupImportForm, self).helper
helper.add_input(Submit("submit", _("Import")))
return helper
class GroupProfileUpdateForm(NoFormTagMixin, forms.ModelForm):
......
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