1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Added full function with compute

This commit is contained in:
Retspen 2015-03-06 13:59:27 +02:00
parent 7ab1a8ad84
commit 573a09fd4d
15 changed files with 1052 additions and 74 deletions

View file

@ -62,4 +62,19 @@
{% endfor %}
{% endif %}
</div>
{% endblock %}
{% block script %}
<script>
$(document).ready(function () {
$('#forward_select').change(function (eventObject) {
if ($(this).val() == 'bridge') {
$('.bridge_name_form_group').show();
$('.bridge_name_form_group_dhcp').hide();
} else {
$('.bridge_name_form_group').hide();
$('.bridge_name_form_group_dhcp').show();
}
}).change();
});
</script>
{% endblock %}