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

Fixed pep8

This commit is contained in:
Retspen 2015-04-06 10:51:50 +03:00
parent 6a066f6e6d
commit 2aa5558df7
14 changed files with 110 additions and 89 deletions

View file

@ -1,8 +1,9 @@
{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{% trans "Instances" %}{% endblock %}
{% block style %}
<link rel="stylesheet" href="{{ STATIC_URL }}/css/sortable-theme-bootstrap.css" />
<link rel="stylesheet" href="{% static "css/sortable-theme-bootstrap.css" %}" />
{% endblock %}
{% block content %}
<!-- Page Heading -->
@ -215,7 +216,7 @@
</div>
{% endblock %}
{% block script %}
<script src="{{ STATIC_URL }}js/sortable.min.js"></script>
<script src="{% static "js/sortable.min.js" %}"></script>
<script>
function open_console(uuid) {
window.open("{% url 'console' %}?token=" + uuid, "", "width=850,height=485");