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

Fix layout

This commit is contained in:
Retspen 2015-03-06 15:06:29 +02:00
parent 573a09fd4d
commit cd4ac13e36
4 changed files with 67 additions and 26 deletions

View file

@ -189,10 +189,16 @@
</div>
</div>
{% endblock %}
{% block javascript %}
<script type="application/javascript">
function open_console(uuid) {
window.open("/{% url 'console' %}/?token=" + uuid, "", "width=850,height=485");
}
</script>
{% block script %}
<script>
function open_console(uuid) {
window.open("{% url 'console' %}?token=" + uuid, "", "width=850,height=485");
}
</script>
<script>
function goto_compute() {
var compute = $("#compute_select").val();
window.location = "/create/" + compute + "/";
}
</script>
{% endblock %}