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

url fix for clone

This commit is contained in:
catborise 2018-10-01 15:09:04 +03:00
parent 358f9ae28a
commit 93a8625aca
4 changed files with 11 additions and 8 deletions

View file

@ -192,7 +192,7 @@
<script>
function goto_compute() {
var compute = $("#compute_select").val();
window.location = "/compute/" + compute + "/create/";
window.location.href = "{% url 'create_instance' 1 %}".replace(1, compute);
}
</script>
{% endif %}