Generic DKRZ national archive form

This form is intended to provide a generic template for interactive forms e.g. for testing

Please provide your last name in the cell below and press "SHIFT-Return"


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

Edit form information


In [ ]:
form.myattribute = "myinformation"
form.mycomment =".."
form.anything_you_like_tag = ".."

Save your form

your form will be stored (the form name consists of your last name plut your keyword)


In [ ]:
form_handler.save_form(sf,"..my comment..") # edit my comment info

Send an email to me to complete the form later on


In [ ]:
form_handler.email_form_info(sf)

officially submit your form

the form will be submitted to the DKRZ team to process you also receive a confirmation email with a reference to your online form for future modifications


In [ ]:
form_handler.form_submission(sf)