Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
{% extends "index.html" %}
|
|
{% comment %}
|
|
<!-- kate: space-indent on; indent-width 4; replace-tabs on; -->
|
|
{% endcomment %}
|
|
{% load mumble_extras %}
|
|
{% load i18n %}
|
|
{% block body %}
|
|
{% endblock %}
|
|
{% block PageTitle %}Mumble :: {{ MumbleServer.name }}{% endblock %}
|
|
{% block HeadTag %}
|
|
<script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script>
|
|
<script type="text/javascript" src="{{ MUMBLE_MEDIA_PREFIX }}js/channelviewer.js"></script>
|
|
<script type="text/javascript" src="{{ MUMBLE_MEDIA_PREFIX }}js/channelviewerplugins.js"></script>
|
|
<script type="text/javascript">
|
|
Ext.onReady( function(){
|
|
Ext.QuickTips.init();
|
|
mainpanel = new Ext.ux.MumbleChannelViewer({
|
|
//title: "ohai",
|
|
renderTo: Ext.getBody(),
|
|
source_url: "{% url mumble.views.cvp_json MumbleServer.id %}",
|
|
imageurl: '{{MUMBLE_MEDIA_PREFIX}}/img',
|
|
tbar: [],
|
|
});
|
|
function updateLayout(){
|
|
viewsize = {
|
|
width: Ext.lib.Dom.getViewWidth(),
|
|
height: Ext.lib.Dom.getViewHeight()
|
|
};
|
|
mainpanel.setHeight( viewsize.height );
|
|
mainpanel.setWidth( viewsize.width );
|
|
}
|
|
updateLayout();
|
|
Ext.EventManager.onWindowResize(updateLayout);
|
|
} );
|
|
</script>
|
|
{% endblock %}
|