2023-09-20 11:46:35 +02:00
|
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block left_pannel %}
|
2023-09-20 12:58:33 +02:00
|
|
|
override
|
2023-09-20 11:46:35 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{%if not current_user.is_authenticated %}
|
|
|
|
<button class="unselected" onclick="location.href = '/login';">login</button>
|
|
|
|
{% else %}
|
2023-09-20 11:54:43 +02:00
|
|
|
<iframe src="/novnc/vnc.html?resize=scale&path=novnc/websockify&view_only" width="100%" height="100%" frameborder="0"></iframe>
|
2023-09-20 11:46:35 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{%endblock %}
|