Untitled
<div class="input-group mb-2"> <span class="input-group-text">POSITIONS</span> <select class="form-select" name="positions" aria-label="positions" id="positions"> {% for position in votes.keys() %} <option value={{position}}>{{ position }}</option> {% endfor %} </select> </div>
Leave a Comment