1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00

add translate for some keywords

This commit is contained in:
catborise 2019-11-20 08:40:20 +03:00
parent ddd3dd5f65
commit 5282d3e556

View file

@ -25,10 +25,10 @@
<div class="col-sm-6">
<select class="form-control" name="add-net-network">
{% for c_net in networks_host %}
<option value="net:{{ c_net }}">{% trans 'Network' %} {{ c_net }}</option>
<option value="net:{{ c_net }}">Network {{ c_net }}</option>
{% endfor %}
{% for c_iface in interfaces_host %}
<option value="iface:{{ c_iface }}">{% trans 'Interface'%} {{ c_iface }}</option>
<option value="iface:{{ c_iface }}">Interface {{ c_iface }}</option>
{% endfor %}
</select>
</div>