[Answer]-Simple rendering logic for selected fields

1๐Ÿ‘

โœ…

<select>
{% for user in users %}
{% if id == user.id %}<option selected>{% else %}<option>{% endif %}{{ user.first_name }}</option>
{% endfor %}
</select>
๐Ÿ‘คJ. Ghyllebert

Leave a comment