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 [ ]:
MY_LAST_NAME = "...."   # e.gl MY_LAST_NAME = "schulz" 
#-------------------------------------------------
from dkrz_forms import form_handler, form_widgets
form_info = form_widgets.check_pwd(MY_LAST_NAME)
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)