Project

General

Profile

Download (3.26 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() {
$('table#membres tr').click(function() {
window.location = 'un-membre.html';
});
$('#new-membre').click(function() {
$('#new-membre-dlg').dialog({title: 'Nouveau membre',
width: '500px',
buttons: [ { text: "Fermer",
click: function() { $(this).dialog("close"); } },
{ text: "Ajouter",
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>Gestion des personnes</h2>
<a href="gestion-personnes.html">Retourner à la gestion des personnes</a>

<button id="new-membre">Nouveau membre</button>
<br/>&nbsp;
</div>

<div id="sidebar">
<div>
<h3>Rechercher dans les membres du personnel</h3>
<label>Nom : <input type="text"/></label>
<label>Prénom : <input type="text"/></label>
<label>Profession : <input type="text"/></label>
<button>Rechercher</button>
</div>
<div id="filtre">
<h3>Afficher les personnes</h3>
<ul>
<li><label><input checked="checked" class="therapeutes" type="checkbox"/>Thérapeutes</label></li>
<li><label><input checked="checked" class="non-therapeutes" type="checkbox"/>Non-thérapeutes</label></li>
</ul>
</div>
</div>

<div class="content">
<table id="membres" class="main">
<thead>
<tr>
<th>Nom</th>
<th>Prénom</th>
<th>Profession</th>
<th>Services</th>
<th>En congé</th>
</tr>
</thead>
<tbody>

<tr>
<td>Dupont</td>
<td>Gloria</td>
<td>Secrétaire</td>
<td>SESSAD TED</td>
<td></td>
</tr>

<tr>
<td>Durant</td>
<td>François</td>
<td>Neuropsychiatre</td>
<td>CMPP / CAMSP</td>
<td>×</td>
</tr>

<tr>
<td>Maurier</td>
<td>Stéphanie</td>
<td>Généraliste</td>
<td>CMPP</td>
<td></td>
</tr>

<tr>
<td>Hosseini</td>
<td>Marcus</td>
<td>Généraliste</td>
<td>CAMSP</td>
<td></td>
</tr>


</tbody>
</table>
</div>

</div>

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

<div id="new-membre-dlg" style="display: none;">
<form>
<p>
<label for="id_nom">Nom :</label>
<input id="id_nom" type="text" name="nom"/>
</p>
<p>
<label for="id_prenom">Prénom :</label>
<input id="id_prenom" type="text" name="prenom"/>
</p>
</form>
</div>
</body>
</html>
(5-5/23)