1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00

Fix missing quotes

This commit is contained in:
Steffo 2017-09-18 08:58:38 +02:00
parent c5355d6865
commit f92519b439

View file

@ -44,7 +44,7 @@
<div class="col-xs-10"> <div class="col-xs-10">
<select id="form-tipo" class="form-control" name="tipo"> <select id="form-tipo" class="form-control" name="tipo">
{% for opzione in opzioni %} {% for opzione in opzioni %}
<option value="{{ opzione }} {% if opzione == dispositivo.tipo %}selected{% endif %}">{{ opzione }}</option> <option value="{{ opzione }}" {% if opzione == dispositivo.tipo %}selected{% endif %}">{{ opzione }}</option>
{% endfor %} {% endfor %}
</select> </select>
</div> </div>