Browse Source

add the server name to the window title

Natenom/support-murmur-13-1446181288462
Michael Ziegler 14 years ago
parent
commit
1ea456849f
  1. 1
      pyweb/mumble/templates/mumble/mumble.html
  2. 2
      pyweb/templates/index.html

1
pyweb/mumble/templates/mumble/mumble.html

@ -6,6 +6,7 @@
{% load i18n %}
{% block body %}
{% endblock %}
{% block PageTitle %}Mumble :: {{ MumbleServer.name }}{% endblock %}
{% block HeadTag %}
<link rel="stylesheet" type="text/css" href="{{ MUMBLE_MEDIA_PREFIX }}css/tab-scroller-menu.css" />
<style type="text/css">

2
pyweb/templates/index.html

@ -2,7 +2,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Mumble Administration</title>
<title>{% block PageTitle %}Mumble Administration{% endblock %}</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/ext-3.2.0/resources/css/ext-all.css" />

Loading…
Cancel
Save