is there a way to pass one or more paramters through several render_template calls in a "quiet" way, that is without using them on the HTML page in the staps between? Other than global variables?
Let's say I have an index-HTML page with several forms.
Form 1 with field to get the parameter "Test_param" and Button "Submit"
Form 2 with Button "Pass", Test_param should not be rendered on the page at this stage.
Form 3 with {{Test_param}} to be visible
I want to do an input in Form 1, pass it on to Form 2 without touching it there - let's say additional paramters are added - and use the parameter from the first form in the third form? A kind of "quiet passing"?
I did google it, but it seems I'm using the wrong words ...