Corrected wrong replacement

This commit is contained in:
Christian Connert 2019-07-10 11:48:30 +02:00
parent fbd3293ca3
commit fdae94a5e1
3 changed files with 18 additions and 18 deletions

View File

@ -8,16 +8,16 @@
<meta name="description" content="directory manager">
<meta name="author" content="kakwa">
<!--link rel="stylesheet/less" href="/.static/less/bootstrap.less" type="text/css" /-->
<!--link rel="stylesheet/less" href="/.static/less/responsive.less" type="text/css" /-->
<!--link rel="stylesheet/less" href="./static/less/bootstrap.less" type="text/css" /-->
<!--link rel="stylesheet/less" href="./static/less/responsive.less" type="text/css" /-->
<!--script src="./static/js/less-1.3.3.min.js"></script-->
<!--append #!watch to the browser URL, then refresh the page. -->
<link href="/.static/css/bootstrap.min.css" rel="stylesheet">
<link href="/.static/css/custom.css" rel="stylesheet">
<link href="/.static/css/style.css" rel="stylesheet">
<link href="/.static/css/bootstrap-switch.css" rel="stylesheet">
<link href="/.static/css/tablesorter-bootstrap.css" rel="stylesheet">
<link href="./static/css/bootstrap.min.css" rel="stylesheet">
<link href="./static/css/custom.css" rel="stylesheet">
<link href="./static/css/style.css" rel="stylesheet">
<link href="./static/css/bootstrap-switch.css" rel="stylesheet">
<link href="./static/css/tablesorter-bootstrap.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
@ -25,11 +25,11 @@
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/.static/img/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/.static/img/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/.static/img/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="/.static/img/apple-touch-icon-57-precomposed.png">
<link rel="icon" type="image/png" href="/.static/img/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./static/img/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="./static/img/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="./static/img/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="./static/img/apple-touch-icon-57-precomposed.png">
<link rel="icon" type="image/png" href="./static/img/favicon.png">
<script type="text/javascript" src="./static/js/jquery.min.js"></script>
<script type="text/javascript" src="./static/js/bootstrap.min.js"></script>

View File

@ -6,11 +6,11 @@
<nav class="navbar navbar-inverse" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<a class="navbar-brand" href="/."><img src="./static/img/icon.png" alt="LdapCherry" height="22" width="22"></a>
<a class="navbar-brand" href="/.selfmodify">Self Modify</a>
<a class="navbar-brand" href="./"><img src="./static/img/icon.png" alt="LdapCherry" height="22" width="22"></a>
<a class="navbar-brand" href="./selfmodify">Self Modify</a>
% if is_admin:
<a class="navbar-brand" href="/.adduser">Add User</a>
<a class="navbar-brand" href="/.searchadmin">Delete/Modify User</a>
<a class="navbar-brand" href="./adduser">Add User</a>
<a class="navbar-brand" href="./searchadmin">Delete/Modify User</a>
% endif
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">

View File

@ -52,10 +52,10 @@
</td>
% endfor
<td>
<a href="/.modify?user=${user | n,u}" class="btn btn-xs blue pad" ><span class="glyphicon glyphicon-cog"></span> Modify</a>
<a href="./modify?user=${user | n,u}" class="btn btn-xs blue pad" ><span class="glyphicon glyphicon-cog"></span> Modify</a>
</td>
<td>
<a href="/.delete?user=${user | n,u}" data-toggle='confirmation-delete' class="btn btn-xs red pad"><span class="glyphicon glyphicon-remove-sign"></span> Delete</a>
<a href="./delete?user=${user | n,u}" data-toggle='confirmation-delete' class="btn btn-xs red pad"><span class="glyphicon glyphicon-remove-sign"></span> Delete</a>
</td>
</tr>
% endfor