2015-06-27 22:35:34 +02:00
|
|
|
|
## -*- coding: utf-8 -*-
|
2015-05-19 17:54:17 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title>LdapCherry</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<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" /-->
|
|
|
|
|
<!--script src="/static/js/less-1.3.3.min.js"></script-->
|
|
|
|
|
<!--append ‘#!watch’ to the browser URL, then refresh the page. -->
|
2015-06-06 22:23:21 +02:00
|
|
|
|
|
2015-05-19 17:54:17 +02:00
|
|
|
|
<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">
|
2015-06-09 08:54:14 +02:00
|
|
|
|
<link href="/static/css/bootstrap-switch.css" rel="stylesheet">
|
2015-05-19 17:54:17 +02:00
|
|
|
|
<link href="/static/css/tablesorter-bootstrap.css" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
|
<script src="/static/js/html5shiv.js"></script>
|
|
|
|
|
<![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="shortcut icon" href="/static/img/favicon.png">
|
2015-06-06 22:23:21 +02:00
|
|
|
|
|
2015-05-19 17:54:17 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/jquery.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="/static/js/bootstrap.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="/static/js/scripts.js"></script>
|
2015-06-03 23:57:22 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/validator.js"></script>
|
2015-06-12 00:25:17 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/bootstrap-notify.js"></script>
|
2015-05-19 17:54:17 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/jquery.tablesorter.min.js"></script>
|
2015-06-09 08:54:14 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/bootstrap-switch.js"></script>
|
2015-06-23 10:42:10 +02:00
|
|
|
|
<script type="text/javascript" src="/static/js/jquery.popconfirm.js"></script>
|
2015-05-19 17:54:17 +02:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
$(function(){
|
|
|
|
|
$("#RecordTable").tablesorter({ sortList: [[0,0]] });
|
2015-06-06 22:23:21 +02:00
|
|
|
|
});
|
2015-05-19 17:54:17 +02:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<%block name="navbar"/>
|
|
|
|
|
<%block name="core" />
|
|
|
|
|
</div>
|
|
|
|
|
<div id="footer">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<p class="muted credit"><a href="http://ldapcherry.readthedocs.org" target="_blank">LdapCherry</a> • © 2015 • Pierre-François Carpentier • Released under the MIT License</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|