1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-24 15:15:22 +00:00

volume filename extensions reorganized.

This commit is contained in:
catborise 2018-07-20 13:41:39 +03:00
parent 4769c5cf1b
commit b7150a1fae

View file

@ -416,8 +416,8 @@
</div> </div>
<div class="col-sm-2"> <div class="col-sm-2">
<select name="extension" class="form-control image-format"> <select name="extension" class="form-control image-format">
{% for format in formats %} {% for extension in extensions %}
<option value="{{ format }}" {% if format == default_format %}selected{% endif %}>{% trans format %}</option> <option value="{{ extension }}" {% if extension == default_extension %}selected{% endif %}>{% trans extension %}</option>
{% endfor %} {% endfor %}
</select> </select>
</div> </div>