Statistics
| Branch: | Tag: | Revision:

root / templates / vnc.html @ 064ecc91

History | View | Annotate | Download (636 Bytes)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% block title %}{{ instance }} - {% trans "Console" %}{% endblock %}
4
{% block breadcrumbs %}:: <a href="{% url instance-detail cluster.slug instance %}">{{ instance }}</a> :: VNC</p>{% endblock %}
5

    
6
{% block content %}
7

    
8
<h3>{% trans "VNC session on" %} {{ instance }}</h3>
9
<applet archive="/static/javavnc/VncViewer.jar" code="VncViewer.class" width="99%" height="790px" align="middle">
10
<param name="PORT" value="{{ port }}">
11
<param name="PASSWORD" value="{{ password }}">
12
<!--
13
<param name="Open new window" value="yes">
14
<param name="Scaling factor" value="auto">
15
-->
16
</applet>
17

    
18
{% endblock %}