root/controlies/www/main.html @ 84
61 | manumora | <!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" xml:lang="es" lang="es">
|
|||
<head>
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|||
<meta name="author" content="Manu Mora Gordillo" />
|
|||
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
|
|||
<title>ControlIES - Centros Educativos de Extremadura</title>
|
|||
<link href="css/helper.css" media="screen" rel="stylesheet" type="text/css" />
|
|||
<link href="css/dropdown.css" media="screen" rel="stylesheet" type="text/css" />
|
|||
<link href="css/default.advanced.css" media="screen" rel="stylesheet" type="text/css" />
|
|||
<link rel="stylesheet" type="text/css" href="js/jquery/css/ui-lightness/jquery-ui-1.8.9.custom.css"/>
|
|||
<script language="javascript" src="js/jquery/jquery-1.5.min.js"></script>
|
|||
<script language="javascript" src="js/jquery/jquery-ui-1.8.9.custom.min.js"></script>
|
|||
<script language="javascript" src="js/jquery/jquery.dropdown.js"></script>
|
|||
62 | manumora | ||
61 | manumora | <!-- Libreria JGrid -->
|
|
<link rel="stylesheet" type="text/css" media="screen" href="js/jquery/jdgrid/css/ui.jqgrid.css" />
|
|||
<script src="js/jquery/jdgrid/grid.locale-sp.js" type="text/javascript"></script>
|
|||
<script src="js/jquery/jdgrid/jquery.jqGrid.min.js" type="text/javascript"></script>
|
|||
<script src="js/jquery/jdgrid/src/grid.common.js" type="text/javascript"></script>
|
|||
<script src="js/jquery/jdgrid/src/grid.formedit.js" type="text/javascript"></script>
|
|||
<script src="js/jquery/jdgrid/src/grid.custom.js" type="text/javascript"></script>
|
|||
<!-- / END -->
|
|||
<script language="javascript">
|
|||
$(document).ready(function(){
|
|||
$("#module").load("cover/index.html");
|
|||
});
|
|||
function loadModule(module){
|
|||
84 | manumora | ||
$("#messageLoading").show();
|
|||
$("#module").load(module+"/index.html", function() {
|
|||
$("#messageLoading").hide();
|
|||
});
|
|||
61 | manumora | }
|
|
function logout(){
|
|||
$.post('logout', function(data) {
|
|||
location.href="index.html";
|
|||
});
|
|||
}
|
|||
65 | Chisco | ||
function loadForm (name,title) {
|
|||
x = ($(window).width()-250)/2;
|
|||
y = ($(window).height()-400)/2;
|
|||
$("#module").html("");
|
|||
$("#dialog-form").dialog({
|
|||
resizable: false,
|
|||
modal: true,
|
|||
title: title,
|
|||
open: function(event, ui) {
|
|||
$("#dialog-form").load("dhcp/index.html")
|
|||
}
|
|||
}).dialog('option', 'position', [x, y]);
|
|||
}
|
|||
61 | manumora | </script>
|
|
</head>
|
|||
<body>
|
|||
84 | manumora | <div id="messageLoading" class="ui-state-error ui-corner-all" style="padding: 0pt 0.7em; float:right; width:90px; display:none;">
|
|
<p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: 0.3em;"></span>
|
|||
<strong id="messageGetGroups">Cargando...</strong></p>
|
|||
</div>
|
|||
61 | manumora | <h1> Control<span class="fontTitle">IES</span> <span class="subTitle">Centros Educativos de Extremadura</span</h1>
|
|
<!-- Beginning of compulsory code below -->
|
|||
<ul id="nav" class="dropdown dropdown-horizontal">
|
|||
<li><a href="javascript:loadModule('cover')">Inicio</a></li>
|
|||
<li><a href="#" class="dir">Administración</a>
|
|||
<ul>
|
|||
<li><a href="javascript:loadModule('users')">Usuarios</a></li>
|
|||
<li><a href="javascript:loadModule('groups','')">Grupos</a></li>
|
|||
70 | manumora | <!--<li class="empty">Máquinas</li>-->
|
|
65 | Chisco | <li><a href="javascript:loadModule('ltsp')">Servidores LTSP</a></li>
|
|
<li><a href="javascript:loadModule('workstation')">WorkStations</a></li>
|
|||
70 | manumora | <li><a href="javascript:loadModule('thinclients')">Clientes Ligeros</a></li>
|
|
61 | manumora | <li><a href="javascript:loadForm('show','Parametros DHCP')">Parámetros DHCP</a></li>
|
|
</ul>
|
|||
</li>
|
|||
70 | manumora | <!-- <li><a href="#" class="dir">Sincronización</a>
|
|
61 | manumora | <ul>
|
|
<li><a href="#">Importación Rayuela</a></li>
|
|||
</ul>
|
|||
</li>
|
|||
<li><a href="#" class="dir">Informes</a>
|
|||
<ul>
|
|||
<li class="empty">Usuarios</li>
|
|||
<li><a href="#">Profesores</a></li>
|
|||
<li><a href="#">Alumnos</a></li>
|
|||
<li class="empty">Máquinas</li>
|
|||
<li><a href="#">Servidores</a></li>
|
|||
<li><a href="#">LTSP</a></li>
|
|||
<li><a href="#">Portátiles</a></li>
|
|||
</ul>
|
|||
70 | manumora | </li>-->
|
|
61 | manumora | <li><a href="javascript:logout();">Salir</a></li>
|
|
</ul>
|
|||
<!-- / END -->
|
|||
<br><br><br>
|
|||
<div id="module" class="centerGrid"></div>
|
|||
</body>
|
|||
</html>
|