summaryrefslogtreecommitdiff
path: root/openstack_dashboard/templates/serial_console.html
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/templates/serial_console.html')
-rw-r--r--openstack_dashboard/templates/serial_console.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/openstack_dashboard/templates/serial_console.html b/openstack_dashboard/templates/serial_console.html
index d1434e7b4..491c90b46 100644
--- a/openstack_dashboard/templates/serial_console.html
+++ b/openstack_dashboard/templates/serial_console.html
@@ -2,25 +2,25 @@
<!DOCTYPE html>
<html>
<head>
- <meta content='IE=edge' http-equiv='X-UA-Compatible' />
- <meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
+ <meta content="IE=edge" http-equiv="X-UA-Compatible" />
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>{{page_title}}</title>
{% load compress %}
{% compress css %}
<link rel="stylesheet" href="{{ STATIC_URL }}dashboard/scss/serial_console.scss" type="text/scss" media="screen" />
{% endcompress %}
<script src="{% url 'horizon:jsi18n' 'horizon' %}"></script>
- <script src='{{ STATIC_URL }}horizon/lib/termjs/term.js'></script>
+ <script src="{{ STATIC_URL }}horizon/lib/termjs/term.js"></script>
<script src="{{ STATIC_URL }}horizon/lib/jquery/jquery.js"></script>
<script src="{{ STATIC_URL }}horizon/lib/angular/angular.js"></script>
<script src="{{ STATIC_URL }}js/angular/directives/serialConsole.js"></script>
</head>
-<body ng-app='serialConsoleApp'>
+<body ng-app="serialConsoleApp">
{% if error_message %}
{{ error_message }}
{% else %}
- <serial-console connection='"{{console_url}}"' protocols='{{protocols}}'></serial-console>
+ <serial-console connection="&quot;{{console_url}}&quot;" protocols="{{protocols}}"></serial-console>
{% endif %}
</body>