def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_tag = False
self.helper.disable_csrf = True
self.helper.layout = Layout(
Fieldset(
'General Comments',
Div(
Div('comments', css_class='col-md-12'),
css_class='row',
),
Div(
Div('alternative_specs_submitted', css_class='col-md-12'),
css_class='row',
),
Div(
Div(HTML('<p style="font-style: italic;">Declaration: By submitting this well construction, alteration or decommission report, as the case may be, I declare that it has been done in accordance with the requirements of the Water Sustainability Act and the Groundwater Protection Regulation.</p>'), css_class='col-md-12'),
css_class='row',
),
)
)
super(ActivitySubmissionCommentForm, self).__init__(*args, **kwargs)
评论列表
文章目录