web.input.success

Here are the examples of the python api web.input.success taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

Example 1

Project: MLSS Source File: submit_reference.py
    def GET(self, secret_md5):
        applicant = applicants.get_by_secret_md5(secret_md5)
        
        if not applicant and secret_md5 == '0' * 32:
            applicant = applicants.get_dummy_record()
        
        return view.reference_form(self.form(), applicant, web.input(success='').success)

Example 2

Project: MLSS Source File: submit_application.py
    def GET(self):
        success = web.input(success='').success
        return view.application_form(self.form(), success)

Example 3

Project: MLSS Source File: submit_application.py
    def GET(self):
        success = web.input(success='').success
        return view.application_form_simple(self.form(), success)