In [ ]:
# Evaluate this cell to identifiy your form
from dkrz_forms import form_widgets, form_handler, checks
form_infos = form_widgets.show_selection()
In [ ]:
# Evaluate this cell to generate your personal form instance
form_info = form_infos[form_widgets.FORMS.value]
sf = form_handler.init_form(form_info)
form = sf.sub.entity_out.report
In [ ]:
form.myattribute = "myinformation"
form.mycomment =".."
form.anything_you_like_tag = ".."
In [ ]:
form_handler.save_form(sf,"..my comment..") # edit my comment info
In [ ]:
form_handler.email_form_info(sf)
In [ ]:
form_handler.form_submission(sf)