minecraft_manager/templates/minecraft_manager/activity.html

12 lines
574 B
HTML

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