blob: 1a03ca9d4f7479ed754995fa5ca9d0a1239b8a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?php
function traiter_formulaire_cequetuveux_aussi()
{
echo "coucou\n";
}
function generate_html_reunion_commentaires($idR)
{
?>
<table cellspacing="0" class="commentaires">
<thead>
<tr>
<th>Commentaires <a href="#">(Editer votre commentaire)</a></th>
</tr>
</thead>
<tr>
<td>Ludo : J'ai monté le DC sur lequel sera basé le SNI</td>
</tr>
<tr>
<td>Jérémie : J'ai fais une première ebauche du DC</td>
</tr>
</table>
<?php
}
function generate_html_reunion_fichiers($idR)
{
?>
<table cellspacing="0" class="fichiers">
<thead>
<tr>
<th>Fichiers attachés <a href="#popfichier" class="pop">(Ajouter un fichier)</a></th>
</tr>
</thead>
<tr>
<td><a href="compte-rendu.txt">compte-rendu.txt</a></td>
</tr>
<tr>
<td><a href="photos-ru.jpg">photos-ru.jpg</a></td>
</tr>
</table>
<?php
}
function generate_html_reunion_detail($idR)
{
?>
<table cellspacing="0" class="detail_reunion">
<thead>
<tr>
<th>Détails de la réunion </th>
<th> </th>
</tr>
</thead>
<tr>
<td><strong>Objet : </strong></td>
<td>Détails stages NEWI</td>
</tr>
<tr>
<td><strong>Organisateur : </strong></td>
<td>Mme Verdier</td>
</tr>
<tr>
<td><strong>Lieu : </strong></td>
<td>Salle 209 </td>
</tr>
<tr>
<td><strong>Ordre du jour : </strong></td>
<td>Le logement, le séjour, les contacts</td>
</tr>
<tr>
<td><strong>Remarque :</strong></td>
<td>aucune</td>
</tr>
</table>
<?php
}
?>
|