def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.helper = FormHelper()
self.helper.form_id = 'main_form'
self.helper.form_class = 'form-horizontal'
self.helper.label_class = 'col-lg-3'
self.helper.field_class = 'col-lg-8'
self.helper.layout = Layout(
Field(
'squad_one',
css_class="typeahead",
),
Field(
'squad_two',
css_class="typeahead",
),
'start_time',
'match_minutes',
FormActions(
Submit('save', 'Create Match'),
)
)
评论列表
文章目录