Python Forum

Full Version: Flask: editing a submitted form
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!
I am making a form which has a many fields. Some are radio buttons and dropdowns. Once i store the value of the input in my database, how can i make it so that the state of the radiobutton and dropdown is updated when i click on edit page?

I have tried this, but it does not work:
                    <div class="form-row">
                        <div class="col-12">
                        <label for="tr_level">Level</label>
                        <select name="tr_level" value="{{ pt_update.tr_level }}" class="form-control">
                            <option>I A</option>
                            <option>II B</option>
                            <option>III C</option>
                            <option>IV D</option>
                            <option>V E</option>
                        </select></div>
I have not been able to find a way to update the radio-button state..
Have been stuck here for quite a bit. Any help would be very useful! Thanks.