57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
|
|
{% extends "base.html" %}
|
|
{% block left_pannel %}
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/override';">override</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/config';">config</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/discord';">discord</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/proxy';">proxy</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/logs';">logs</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/stats';">stats</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="selected" onclick="location.href = '/dev_override';">Override</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<button class="unselected" onclick="location.href = '/settings';">settings</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{%if not current_user.is_authenticated %}
|
|
<button class="unselected" onclick="location.href = '/login';">login</button>
|
|
{% else %}
|
|
<iframe src="/novnc/vnc_lite.html?resize=scale&path=novnc/websockify&view_only" width="100%" height="100%" frameborder="0"></iframe>
|
|
{% endif %}
|
|
|
|
{%endblock %} |