mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 07:34:19 +00:00
Fix missing quotes
This commit is contained in:
parent
c5355d6865
commit
f92519b439
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue