I made a drop-down field that I created with select-option, after saving the data I selected here, when I enter the update form, I want the data selected in the save form to be selected again, can you help with this?
insert.html
<select name="healmedy_car_info" id="healmedy_car_info" class="form-select" aria-label="Default select example">
<option value="selectcar">Lütfen Araç Seçiniz</option>
<option value="34SAS20">34 SAS 20</option>
<option value="34SAS30">34 SAS 30</option>
<option value="34BF2904">34 BF 2904</option>
<option value="34TP0633">34 TP 0633</option>
<option value="34BF9529">34 BF 9529</option>
</select>
update.html
<select name="healmedy_car_info" id="healmedy_car_info" class="form-select" aria-label="Default select example">
<option value="selectcar">Lütfen Araç Seçiniz</option>
<option value="34SAS20">34 SAS 20</option>
<option value="34SAS30">34 SAS 30</option>
<option value="34BF2904">34 BF 2904</option>
<option value="34TP0633">34 TP 0633</option>
<option value="34BF9529">34 BF 9529</option>
</select>
I pull the data with django and save it to the database, I just want the data I pulled here to be selected in update.html.