Untitled

 avatar
unknown
plain_text
a year ago
314 B
1
Indexable
<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