Being am new to Flask I read the manuals of Flask an Jinja and I know how to read a filed from a template, but not how to update the template.
My template has the following structure which I modified from the doco
<form action="{{ url_for('add_entry') }}" method=post class=add-entry> <dl> <dt>Documet: <dd><input name=text size = 80 value = {{ AO_sDocument }} > </input > <dd><input type=submit value=Analyse> </dl> </form> and my Python has the following line
render_template('show_entries.html', AO_sDocument=AO_sDocument ) Yest this line does not seem to update the field.
Thanks!
"around all your tag attributes (except action)? It wouldn't surprise me if AO_sDocument is valid, but the browser's not able to parse your example successfully.