def __init__(self, *args, **kwargs):
super(OrgUnlockForm, self).__init__(*args, **kwargs)
self.helper = FormHelper()
self.helper.form_class = 'form-vertical'
self.helper.form_id = 'org-unlock-form'
self.helper.form_method = 'post'
self.helper.layout = Layout(
FormActions(
Submit(
'action',
'Cancel',
css_class='slds-button slds-button--neutral',
),
Submit(
'action',
'Unlock',
css_class='slds-button slds-button--destructive',
),
),
)
评论列表
文章目录