Browse Source

don't require a mumble account for admin/userlist/banlist/log viewer tabs. fixes #115

Natenom/support-murmur-13-1446181288462
Michael Ziegler 14 years ago
parent
commit
967a1b84f1
  1. 4
      pyweb/mumble/templates/mumble/mumble.html

4
pyweb/mumble/templates/mumble/mumble.html

@ -115,7 +115,6 @@
labelWidth: 150, labelWidth: 150,
baseParams: {serverid: {{MumbleServer.id}} }, baseParams: {serverid: {{MumbleServer.id}} },
}, },
{% if MumbleAccount %}
{% if IsAdmin %} {% if IsAdmin %}
{ {
title: gettext("Administration"), title: gettext("Administration"),
@ -124,6 +123,7 @@
xtype: 'mumbleform', xtype: 'mumbleform',
}, },
{% endif %} {% endif %}
{% if MumbleAccount %}
{ {
title: gettext("User texture"), title: gettext("User texture"),
layout: "border", layout: "border",
@ -176,6 +176,7 @@
}], }],
}], }],
}, },
{% endif %}
{% if IsAdmin %} {% if IsAdmin %}
{ {
xtype: "userEditorPanel", xtype: "userEditorPanel",
@ -189,7 +190,6 @@
} }
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endif %}
], ],
}], }],
}); });

Loading…
Cancel
Save