Project

General

Profile

Download (3.75 KB) Statistics
| Branch: | Tag: | Revision:
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8"/>
<title>APS42 — Gestion du personnel</title>
<link rel="stylesheet" type="text/css" media="all" href="css/style.css"/>
<link rel="stylesheet" type="text/css" media="all" href="css/smoothness/jquery-ui-1.8.21.custom.css"/>

<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script src="development-bundle/ui/i18n/jquery.ui.datepicker-fr.js"></script>
<script>
$(function() {
$('#lundi').click(function() {
$('#lundi-dlg').dialog({title: 'Plages du lundi',
width: '950px',
buttons: [ { text: "Annuler",
click: function() { $(this).dialog("close"); } },
{ text: "Valider",
click: function() { $(this).dialog("close"); } }]}
);
});
});
</script>
</head>
<body>
<div id="wrap-large">
<div id="header">
<h1><a href="accueil.html">APS 42</a></h1>
<span>Gestion - CMPP</span>
</div>
<div id="splash" class="cmpp">
<div id="user-links">
<a href="connexion.html">Déconnexion</a>
</div>
</div>
<div id="content">

<div id="appbar">
<h2>Personnel - Durant François <span class="en-conge">(en congé jusqu'au 3 septembre)</span></h2>
<a href="admin-personnel.html">Retourner à l'administration du personnel</a>
<button>Supprimer</button>
</div>

<div id="info-membre">
<div class="frame">
<h3>État civil</h3>
<button class="save"></button>
<p><label>Nom :</label> <input value="Durant"/>
<label>Prénom(s) :</label> <input value="François"/>
<label>Genre :</label> <input value="M"/></p>
</div>

<div class="frame">
<h3>Services</h3>
<button class="save"></button>

<p class="services">
<input type="checkbox" checked="checked"><label>CMPP</label></input>
<input type="checkbox" checked="checked"><label>CAMSP</label></input>
<input type="checkbox"><label>SESSAD TED</label></input>
<input type="checkbox"><label>SESSAD DYS</label></input>
</p>

</div>

<div class="frame" id="schedule">
<h3>Horaires de travail</h3>

<table>
<thead><tr><th id="lundi">Lundi</th><th>Mardi</th><th>Mercredi</th><th>Jeudi</th><th>Vendredi</th><th>Samedi</th><th>Dimanche</th></tr></thead>
<tbody>
<tr>
<td>De 13h30 à 17h30</td>
<td>De 8h30 à 12h30<br/>De 13h30 à 17h30</td>
<td>-</td>
<td>De 8h30 à 12h30<br/>De 13h30 à 17h30</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
</div>

<div class="frame">
<h3>Congés</h3>
<button class="save"></button>
<ul>
<li>Du 20 août au 3 septembre 2012 (en cours)</li>
<li>Du 3 au 10 octobre 2012</li>
<li>Du 24 décembre 2012 au 4 janvier 2013 (congés annuels)</li>
</ul>
</div>

</div>

<div id="footer">
</div>
</div>

<div id="lundi-dlg" style="display: none;">
<table>
<tr>
<th>Heure début</th> <th>Heure fin</th> <th>Date début</th> <th>Date fin</th> <th>Périodicité</th> <th>Services</th>
</tr>
<tr>
<td><input value="13h30" size="8"/></td> <td><input value="17h30" size="8"/></td> <td><input value="20/04/2012" size="12"/></td> <td><input value="-" size="12"/></td> <td><select><option>Toutes les semaines</option></select></td> <td><select><option>CAMSP</option><option>CMPP</option><option>...</option><option>+</option></select></td> <td><button>-</button></td>
</tr>

<tr class="expired"> <td>13h30</td> <td>15h30</td> <td>2/01/2012</td> <td>14/04/2012</td> <td>2× par mois</td> <td>CAMSP</td> <td><button>déver.</button> </tr>
</table>
<button>+</button>
</div>

</body>
</html>
(21-21/23)