themes: Update fledermaus, freifunk-bno, freifunk-hannover and freifunk
This commit is contained in:
parent
0c281f4e86
commit
3a12f82014
9 changed files with 298 additions and 31 deletions
|
@ -517,6 +517,56 @@ ul.cbi-apply {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu {
|
||||||
|
padding: 3px 0;
|
||||||
|
margin-left: 0 !important;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 3px 7px;
|
||||||
|
margin-right: 3px;
|
||||||
|
border: 1px outset #000000;
|
||||||
|
border-bottom: none;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
color: #BBBBBB;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #FFEEAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li a:hover {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
padding-top: 4px;
|
||||||
|
color: #000000;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.cbi-tab-descr {
|
||||||
|
background-image: url(/luci-static/resources/cbi/help.gif);
|
||||||
|
background-position: 0.25em 50%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
border-bottom: 1px solid #CCCCCC;
|
||||||
|
margin: 0.25em 0.25em 2em;
|
||||||
|
padding: 0.5em 0.5em 0.5em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,7 @@ require("luci.http").prepare_content("text/html")
|
||||||
<% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
|
<% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
|
||||||
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
||||||
<meta http-equiv="content-script-type" content="text/javascript" />
|
<meta http-equiv="content-script-type" content="text/javascript" />
|
||||||
|
<script type="text/javascript" src="<%=resource%>/xhr.js"></script>
|
||||||
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
||||||
|
|
||||||
<!--[if lt IE 7]>
|
<!--[if lt IE 7]>
|
||||||
|
@ -63,6 +64,14 @@ require("luci.http").prepare_content("text/html")
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
</head>
|
</head>
|
||||||
<body onload="window.setup_hover && setup_hover()">
|
<body onload="window.setup_hover && setup_hover()">
|
||||||
|
|
||||||
|
<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:No password set!%></strong><br />
|
||||||
|
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
|
||||||
|
</div>
|
||||||
|
<%- end -%>
|
||||||
|
|
||||||
<div id="header"><div id="header2">
|
<div id="header"><div id="header2">
|
||||||
<span id="header3">freifunk kamikaze</span><br />
|
<span id="header3">freifunk kamikaze</span><br />
|
||||||
<span id="header4">now with even more bats and stuff</span>
|
<span id="header4">now with even more bats and stuff</span>
|
||||||
|
@ -178,3 +187,11 @@ end
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
</div>
|
</div>
|
||||||
<div id="maincontent">
|
<div id="maincontent">
|
||||||
|
<% if category ~= "freifunk" and category ~= "splash" then %>
|
||||||
|
<noscript>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:Java Script required!%></strong><br />
|
||||||
|
<%:You must enable Java Script in your browser or LuCI will not work properly.%>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
<% end %>
|
||||||
|
|
|
@ -625,6 +625,57 @@ ul.cbi-apply {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu {
|
||||||
|
padding: 3px 0;
|
||||||
|
margin-left: 0 !important;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 3px 7px;
|
||||||
|
margin-right: 3px;
|
||||||
|
border: 1px outset #000;
|
||||||
|
border-bottom: none;
|
||||||
|
background-color: #eee;
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
||||||
|
color: #000;
|
||||||
|
background-color: #FFEEAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
padding-top: 4px;
|
||||||
|
color: #000;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.cbi-tab-descr {
|
||||||
|
background-image: url(/luci-static/resources/cbi/help.gif);
|
||||||
|
background-position: 0.25em 50%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
margin: 0.25em 0.25em 2em;
|
||||||
|
padding: 0.5em 0.5em 0.5em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,7 @@ require("luci.http").prepare_content("text/html")
|
||||||
<link rel="shortcut icon" href="<%=media%>/images/favicon.ico" />
|
<link rel="shortcut icon" href="<%=media%>/images/favicon.ico" />
|
||||||
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
||||||
<meta http-equiv="content-script-type" content="text/javascript" />
|
<meta http-equiv="content-script-type" content="text/javascript" />
|
||||||
|
<script type="text/javascript" src="<%=resource%>/xhr.js"></script>
|
||||||
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
||||||
|
|
||||||
<!--[if lt IE 7]>
|
<!--[if lt IE 7]>
|
||||||
|
@ -68,6 +69,12 @@ require("luci.http").prepare_content("text/html")
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:No password set!%></strong><br />
|
||||||
|
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
|
||||||
|
</div>
|
||||||
|
<%- end -%>
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
|
|
||||||
|
@ -193,4 +200,13 @@ end
|
||||||
|
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="maincontent">
|
<div id="maincontent">
|
||||||
|
<% if category ~= "freifunk" and category ~= "splash" then %>
|
||||||
|
<noscript>
|
||||||
|
<div class="errorbox">
|
||||||
|
<strong><%:Java Script required!%></strong><br />
|
||||||
|
<%:You must enable Java Script in your browser or LuCI will not work properly.%>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
<% end %>
|
||||||
|
|
|
@ -450,53 +450,53 @@ ul.cbi-apply {
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu {
|
ul.cbi-tabmenu {
|
||||||
padding: 3px 0;
|
padding: 3px 0;
|
||||||
margin-left: 0 !important;
|
margin-left: 0 !important;
|
||||||
margin-bottom: -1px;
|
margin-bottom: -1px;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu li.cbi-tab,
|
ul.cbi-tabmenu li.cbi-tab,
|
||||||
ul.cbi-tabmenu li.cbi-tab-disabled {
|
ul.cbi-tabmenu li.cbi-tab-disabled {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu li.cbi-tab a,
|
ul.cbi-tabmenu li.cbi-tab a,
|
||||||
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: 3px 7px;
|
padding: 3px 7px;
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
border: 1px outset #000;
|
border: 1px outset #000;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
||||||
color: #000;
|
color: #000;
|
||||||
background-color: #FFEEAA;
|
background-color: #FFEEAA;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu li a:hover {
|
ul.cbi-tabmenu li a:hover {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.cbi-tabmenu li.cbi-tab a {
|
ul.cbi-tabmenu li.cbi-tab a {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
color: #000;
|
color: #000;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cbi-tab-descr {
|
div.cbi-tab-descr {
|
||||||
background-image: url(/luci-static/resources/cbi/help.gif);
|
background-image: url(/luci-static/resources/cbi/help.gif);
|
||||||
background-position: 0.25em 50%;
|
background-position: 0.25em 50%;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
margin: 0.25em 0.25em 2em;
|
margin: 0.25em 0.25em 2em;
|
||||||
padding: 0.5em 0.5em 0.5em 2em;
|
padding: 0.5em 0.5em 0.5em 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=submit],
|
input[type=submit],
|
||||||
|
|
|
@ -424,8 +424,59 @@ textarea#syslog {
|
||||||
|
|
||||||
ul.cbi-apply {
|
ul.cbi-apply {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu {
|
||||||
|
padding: 3px 0;
|
||||||
|
margin-left: 0 !important;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 3px 7px;
|
||||||
|
margin-right: 3px;
|
||||||
|
border: 1px outset #000;
|
||||||
|
border-bottom: none;
|
||||||
|
background-color: #eee;
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
||||||
|
color: #000;
|
||||||
|
background-color: #FFEEAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
padding-top: 4px;
|
||||||
|
color: #000;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.cbi-tab-descr {
|
||||||
|
background-image: url(/luci-static/resources/cbi/help.gif);
|
||||||
|
background-position: 0.25em 50%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
margin: 0.25em 0.25em 2em;
|
||||||
|
padding: 0.5em 0.5em 0.5em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
input[type=submit],
|
input[type=submit],
|
||||||
input[type=reset],
|
input[type=reset],
|
||||||
input[type=image] {
|
input[type=image] {
|
||||||
|
|
|
@ -49,10 +49,20 @@ require("luci.http").prepare_content("application/xhtml+xml")
|
||||||
<script type="text/javascript" src="<%=resource%>/VarType.js"></script>
|
<script type="text/javascript" src="<%=resource%>/VarType.js"></script>
|
||||||
<script type="text/javascript" src="<%=resource%>/XHTML1.js"></script>
|
<script type="text/javascript" src="<%=resource%>/XHTML1.js"></script>
|
||||||
<script type="text/javascript" src="<%=resource%>/Dropdowns.js"></script>
|
<script type="text/javascript" src="<%=resource%>/Dropdowns.js"></script>
|
||||||
|
<script type="text/javascript" src="<%=resource%>/xhr.js"></script>
|
||||||
|
|
||||||
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
||||||
</head>
|
</head>
|
||||||
<body class="lang_<%=luci.i18n.context.lang%>">
|
<body class="lang_<%=luci.i18n.context.lang%>">
|
||||||
|
|
||||||
|
|
||||||
|
<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:No password set!%></strong><br />
|
||||||
|
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
|
||||||
|
</div>
|
||||||
|
<%- end -%>
|
||||||
|
|
||||||
<p class="skiplink">
|
<p class="skiplink">
|
||||||
<span id="skiplink1"><a href="#navigation"><%:Skip to navigation%></a></span>
|
<span id="skiplink1"><a href="#navigation"><%:Skip to navigation%></a></span>
|
||||||
<span id="skiplink2"><a href="#content"><%:Skip to content%></a></span>
|
<span id="skiplink2"><a href="#content"><%:Skip to content%></a></span>
|
||||||
|
@ -161,3 +171,11 @@ else -%>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="maincontent">
|
<div id="maincontent">
|
||||||
|
<% if category ~= "freifunk" and category ~= "splash" then %>
|
||||||
|
<noscript>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:Java Script required!%></strong><br />
|
||||||
|
<%:You must enable Java Script in your browser or LuCI will not work properly.%>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
<% end %>
|
||||||
|
|
|
@ -632,6 +632,57 @@ ul.cbi-apply {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu {
|
||||||
|
padding: 3px 0;
|
||||||
|
margin-left: 0 !important;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a,
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-disabled a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 3px 7px;
|
||||||
|
margin-right: 3px;
|
||||||
|
border: 1px outset #000;
|
||||||
|
border-bottom: none;
|
||||||
|
background-color: #eee;
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab-highlighted a {
|
||||||
|
color: #000;
|
||||||
|
background-color: #FFEEAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.cbi-tabmenu li.cbi-tab a {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
padding-top: 4px;
|
||||||
|
color: #000;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.cbi-tab-descr {
|
||||||
|
background-image: url(/luci-static/resources/cbi/help.gif);
|
||||||
|
background-position: 0.25em 50%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
margin: 0.25em 0.25em 2em;
|
||||||
|
padding: 0.5em 0.5em 0.5em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,6 @@ You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
$Id$
|
|
||||||
|
|
||||||
-%>
|
-%>
|
||||||
<%
|
<%
|
||||||
require("luci.sys")
|
require("luci.sys")
|
||||||
|
@ -44,6 +42,7 @@ require("luci.http").prepare_content("text/html")
|
||||||
<link rel="shortcut icon" href="<%=media%>/images/favicon.ico" />
|
<link rel="shortcut icon" href="<%=media%>/images/favicon.ico" />
|
||||||
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
|
||||||
<meta http-equiv="content-script-type" content="text/javascript" />
|
<meta http-equiv="content-script-type" content="text/javascript" />
|
||||||
|
<script type="text/javascript" src="<%=resource%>/xhr.js"></script>
|
||||||
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
|
||||||
|
|
||||||
<!--[if lt IE 7]>
|
<!--[if lt IE 7]>
|
||||||
|
@ -68,6 +67,12 @@ require("luci.http").prepare_content("text/html")
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:No password set!%></strong><br />
|
||||||
|
<%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
|
||||||
|
</div>
|
||||||
|
<%- end -%>
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
|
|
||||||
|
@ -194,3 +199,11 @@ end
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
</div>
|
</div>
|
||||||
<div id="maincontent">
|
<div id="maincontent">
|
||||||
|
<% if category ~= "freifunk" and category ~= "splash" then %>
|
||||||
|
<noscript>
|
||||||
|
<div class="warning">
|
||||||
|
<strong><%:Java Script required!%></strong><br />
|
||||||
|
<%:You must enable Java Script in your browser or LuCI will not work properly.%>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
<%end%>
|
||||||
|
|
Loading…
Reference in a new issue