12 lines
551 B
HTML
12 lines
551 B
HTML
{% extends "minecraft_manager/dashboard.html" %}
|
|
{% load template_settings %}
|
|
{% block title %}CoreProtect GUI{% endblock %}
|
|
{% block section %}
|
|
<a href="{% template_settings 'COREPROTECT_WEB_URL' %}?username={{ user.username }}" target="_blank">Fullscreen</a>
|
|
<iframe id="cpgui" width="100%" height="750px" src="{% template_settings 'COREPROTECT_WEB_URL' %}?username={{ user.username }}">Loading...</iframe>
|
|
|
|
<script>
|
|
var height = $(window).height();
|
|
//$("#cpgui").height(height * .8);
|
|
</script>
|
|
{% endblock section %} |