1
|
<!DOCTYPE html>
|
2
|
<html lang="fr">
|
3
|
<head>
|
4
|
<meta charset="utf-8"/>
|
5
|
<title>APS42 — Gestion du personnel</title>
|
6
|
<link rel="stylesheet" type="text/css" media="all" href="css/style.css"/>
|
7
|
<link rel="stylesheet" type="text/css" media="all" href="css/smoothness/jquery-ui-1.8.21.custom.css"/>
|
8
|
|
9
|
<script src="js/jquery-1.7.2.min.js"></script>
|
10
|
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
|
11
|
<script src="development-bundle/ui/i18n/jquery.ui.datepicker-fr.js"></script>
|
12
|
<script>
|
13
|
$(function() {
|
14
|
$('table#membres tr').click(function() {
|
15
|
window.location = 'un-membre.html';
|
16
|
});
|
17
|
$('#new-membre').click(function() {
|
18
|
$('#new-membre-dlg').dialog({title: 'Nouveau membre',
|
19
|
width: '500px',
|
20
|
buttons: [ { text: "Fermer",
|
21
|
click: function() { $(this).dialog("close"); } },
|
22
|
{ text: "Ajouter",
|
23
|
click: function() {
|
24
|
$(this).dialog("close"); } } ]
|
25
|
});
|
26
|
});
|
27
|
});
|
28
|
</script>
|
29
|
</head>
|
30
|
<body>
|
31
|
<div id="wrap-large">
|
32
|
<div id="header">
|
33
|
<h1><a href="accueil.html">APS 42</a></h1>
|
34
|
<span>Gestion - CMPP</span>
|
35
|
</div>
|
36
|
<div id="splash" class="cmpp">
|
37
|
<div id="user-links">
|
38
|
<a href="connexion.html">Déconnexion</a>
|
39
|
</div>
|
40
|
</div>
|
41
|
<div id="content">
|
42
|
|
43
|
<div id="appbar">
|
44
|
<h2>Gestion des personnes</h2>
|
45
|
<a href="gestion-personnes.html">Retourner à la gestion des personnes</a>
|
46
|
|
47
|
<button id="new-membre">Nouveau membre</button>
|
48
|
<br/>
|
49
|
</div>
|
50
|
|
51
|
<div id="sidebar">
|
52
|
<div>
|
53
|
<h3>Rechercher dans les membres du personnel</h3>
|
54
|
<label>Nom : <input type="text"/></label>
|
55
|
<label>Prénom : <input type="text"/></label>
|
56
|
<label>Profession : <input type="text"/></label>
|
57
|
<button>Rechercher</button>
|
58
|
</div>
|
59
|
<div id="filtre">
|
60
|
<h3>Afficher les personnes</h3>
|
61
|
<ul>
|
62
|
<li><label><input checked="checked" class="therapeutes" type="checkbox"/>Thérapeutes</label></li>
|
63
|
<li><label><input checked="checked" class="non-therapeutes" type="checkbox"/>Non-thérapeutes</label></li>
|
64
|
</ul>
|
65
|
</div>
|
66
|
</div>
|
67
|
|
68
|
<div class="content">
|
69
|
<table id="membres" class="main">
|
70
|
<thead>
|
71
|
<tr>
|
72
|
<th>Nom</th>
|
73
|
<th>Prénom</th>
|
74
|
<th>Profession</th>
|
75
|
<th>Services</th>
|
76
|
<th>En congé</th>
|
77
|
</tr>
|
78
|
</thead>
|
79
|
<tbody>
|
80
|
|
81
|
<tr>
|
82
|
<td>Dupont</td>
|
83
|
<td>Gloria</td>
|
84
|
<td>Secrétaire</td>
|
85
|
<td>SESSAD TED</td>
|
86
|
<td></td>
|
87
|
</tr>
|
88
|
|
89
|
<tr>
|
90
|
<td>Durant</td>
|
91
|
<td>François</td>
|
92
|
<td>Neuropsychiatre</td>
|
93
|
<td>CMPP / CAMSP</td>
|
94
|
<td>×</td>
|
95
|
</tr>
|
96
|
|
97
|
<tr>
|
98
|
<td>Maurier</td>
|
99
|
<td>Stéphanie</td>
|
100
|
<td>Généraliste</td>
|
101
|
<td>CMPP</td>
|
102
|
<td></td>
|
103
|
</tr>
|
104
|
|
105
|
<tr>
|
106
|
<td>Hosseini</td>
|
107
|
<td>Marcus</td>
|
108
|
<td>Généraliste</td>
|
109
|
<td>CAMSP</td>
|
110
|
<td></td>
|
111
|
</tr>
|
112
|
|
113
|
|
114
|
</tbody>
|
115
|
</table>
|
116
|
</div>
|
117
|
|
118
|
</div>
|
119
|
|
120
|
<div id="footer">
|
121
|
—
|
122
|
</div>
|
123
|
</div>
|
124
|
|
125
|
<div id="new-membre-dlg" style="display: none;">
|
126
|
<form>
|
127
|
<p>
|
128
|
<label for="id_nom">Nom :</label>
|
129
|
<input id="id_nom" type="text" name="nom"/>
|
130
|
</p>
|
131
|
<p>
|
132
|
<label for="id_prenom">Prénom :</label>
|
133
|
<input id="id_prenom" type="text" name="prenom"/>
|
134
|
</p>
|
135
|
</form>
|
136
|
</div>
|
137
|
</body>
|
138
|
</html>
|