mirror of https://github.com/sipwise/www_admin.git
132 lines
4.7 KiB
132 lines
4.7 KiB
<!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" lang="[% site_config.language %]">
|
|
|
|
<head>
|
|
|
|
<title>[% template.title or site_config.title %]</title>
|
|
|
|
<!-- JQuery-UI -->
|
|
<link rel="stylesheet" type="text/css" href="/css/south-street/jquery-ui-1.8.7.custom.css" />
|
|
<link rel="stylesheet" type="text/css" href="/css/smooth/jquery-ui-1.8.7.custom.css" />
|
|
<script type="text/javascript" src="/js/jquery-1.4.4.min.js"></script>
|
|
<script type="text/javascript" src="/js/jquery.tools.min.js"></script>
|
|
<script type="text/javascript" src="/js/jquery-ui-1.8.7.custom.min.js"></script>
|
|
<script type="text/javascript" src="/js/jquery.cookie.js"></script>
|
|
|
|
<!-- Blueprint -->
|
|
<link rel="stylesheet" href="/css/blueprint/screen.css" type="text/css" media="screen, projection" />
|
|
<link rel="stylesheet" href="/css/blueprint/print.css" type="text/css" media="print" />
|
|
<!--[if lt IE 8]><link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css" media="screen, projection" /><![endif]-->
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/admin.css" media="screen, projection" />
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="content-language" content="[% site_config.language %]" />
|
|
|
|
<meta name="description" content="[% template.title or site_config.title %]" />
|
|
<meta name="title" content="[% template.title or site_config.title %]" />
|
|
<meta name="Company" content="[% site_config.company.name %]" />
|
|
<meta name="keywords" content="" />
|
|
<meta name="Language" content="[% site_config.language_string %]" />
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
|
|
var drawer = $.cookie('menustate');
|
|
if(drawer === undefined) {
|
|
drawer = 0;
|
|
}
|
|
|
|
$("#contentmenu").accordion({
|
|
header: "h3",
|
|
autoHeight: false,
|
|
navigation: true,
|
|
alwaysOpen: false,
|
|
collapsible: false,
|
|
active: parseInt(drawer),
|
|
icons: { 'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus' },
|
|
change: function(event,ui) {
|
|
var index = jQuery(this).find("h3").index(ui.newHeader[0]);
|
|
if(index > -1) {
|
|
$.cookie('menustate', index, { path: '/', expires: 2});
|
|
}
|
|
},
|
|
});
|
|
|
|
$(".help[title]").tooltip();
|
|
|
|
$("#search_from").datepicker({
|
|
dateFormat: 'dd.mm.yy',
|
|
});
|
|
$("#search_to").datepicker({
|
|
dateFormat: 'dd.mm.yy',
|
|
});
|
|
|
|
$( "#dataConfirmModal" ).dialog({ autoOpen: false, modal: true });
|
|
$( "#dataConfirmCancel" ).button({ });
|
|
$( "#dataConfirmOK" ).button({ });
|
|
$( "#dataConfirmCancel").click(function(){ $( "#dataConfirmModal" ).dialog( "close" ); return false; });
|
|
$(".button-delete , .button-terminate").parents("a").click(function(){
|
|
//show dialog here
|
|
var href = $(this).attr('href');
|
|
$('#dataConfirmOK').attr('href', href);
|
|
$( "#dataConfirmModal" ).dialog("open");
|
|
return false;
|
|
});
|
|
|
|
[%
|
|
buttons = [
|
|
{ name = "add", icon="plusthick" },
|
|
{ name = "delete", icon="trash" },
|
|
{ name = "cancel", icon="cancel" },
|
|
{ name = "edit", icon="wrench" },
|
|
{ name = "save", icon="check" },
|
|
{ name = "back", icon="arrowthick-1-w" },
|
|
{ name = "lock", icon="locked" },
|
|
{ name = "lock-sub", icon="locked", subicon="triangle-1-s" },
|
|
{ name = "unlock", icon="unlocked" },
|
|
{ name = "terminate", icon="closethick" },
|
|
{ name = "search", icon="search" },
|
|
{ name = "show", icon="zoomin" },
|
|
{ name = "hide", icon="zoomout" },
|
|
{ name = "activate", icon="plus" },
|
|
{ name = "deactivate", icon="minus" },
|
|
{ name = "listen", icon="video" },
|
|
{ name = "clock", icon="clock" },
|
|
{ name = "transfer", icon="transferthick-e-w" },
|
|
{ name = "cart", icon="cart" },
|
|
{ name = "browse", icon="folder-open" },
|
|
{ name = "download", icon="disk" },
|
|
]
|
|
%]
|
|
[% FOREACH b = buttons %]
|
|
$(".button-[% b.name %]").button({
|
|
icons: {
|
|
primary: "ui-icon-[% b.icon %]",
|
|
[% IF b.subicon %]
|
|
secondary: "ui-icon-[% b.subicon %]",
|
|
[% END %]
|
|
},
|
|
text: false
|
|
});
|
|
[% END %]
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
[% content %]
|
|
|
|
|
|
<div id="dataConfirmModal" class="modal" title="Are you sure?">
|
|
<a id="dataConfirmCancel">Cancel</a>
|
|
<a id="dataConfirmOK">OK</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|