diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:19:32 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:19:32 +0200 |
commit | f55d097d97c3c81382c441f612b0ce2881e63334 (patch) | |
tree | ec6167735ab6184eaf05e99d262c6acdc28e22bf /maquette/index2.html | |
parent | a25edc8edf23e652dbd529b8c42199ae559905a1 (diff) | |
download | 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.tar.gz 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.tar.bz2 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.zip |
Renommage pour diff entre maquette_old et maquette
Diffstat (limited to 'maquette/index2.html')
-rw-r--r-- | maquette/index2.html | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/maquette/index2.html b/maquette/index2.html new file mode 100644 index 0000000..0395614 --- /dev/null +++ b/maquette/index2.html @@ -0,0 +1,92 @@ +<!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">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>Awor : liste des réunions</title>
+<link href="style1.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<script language="javascript" type="text/javascript">
+var newWin = null;
+function closeWin(){
+if (newWin != null){
+if(!newWin.closed)
+newWin.close();
+}
+}
+function popUp(strURL,strType,strHeight,strWidth) {
+closeWin();
+var strOptions="";
+if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
+if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
+if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,
+height="+strHeight+",width="+strWidth;
+newWin = window.open(strURL, 'newWin', strOptions);
+newWin.focus();
+}
+</script>
+<table width="99%" class="principal">
+<tr>
+<td><h2>AWOR</h2></td>
+</tr>
+<tr>
+<td>
+<ul class="menu">
+<li class="menu"><a href="menu1.php">Organiser une réunion</a></li>
+<li class="menu"><a href="menu1.php">Gerer mes listes</a></li>
+<li class="menu"><a href="modifmail.php" onclick="popUp(this.href,'Modification du mail',300,100);return false;">Modifier mon adresse mail</a></li>
+<li class="menu"><a href="menu1.php">Télécharger le ficher iCal </a></li>
+</ul>
+</td>
+</tr>
+<tr>
+<td>Bonjour Julien Sere, nous sommes le 2/12/06.<br />
+Les élements requierant votre attention sont en <span class="important">rouge</span>
+<table width="85%">
+<tr>
+<th>(ID Réunion)</th>
+<th>Objet</th>
+<th>Date</th>
+<th>Etat</th>
+<th>Détails</th>
+</tr>
+<tr>
+<td>r1</td>
+<td>Jury S1 </td>
+<td>26/11/06 à 9:30 </td>
+<td class="termine">Terminé</td>
+<td><a href="details_reunion.php"><img src="images/details.png" alt="Détails" width="20" height="20" border="0" /></a></td>
+</tr>
+<tr>
+<td>r2</td>
+<td>Decision NEWI </td>
+<td>?</td>
+<td>En préparation </td>
+<td><img src="images/details.png" alt="Détails" width="20" height="20" /></td>
+</tr>
+<tr>
+<td>r3</td>
+<td>PPP AWOR1 </td>
+<td>25/12/06 à 18:00 </td>
+<td>Date arretée </td>
+<td><img src="images/details.png" alt="Détails" width="20" height="20" /></td>
+</tr>
+<tr>
+<td>r4</td>
+<td>Problème RU </td>
+<td>?</td>
+<td>En préparation </td>
+<td><img src="images/details.png" alt="Détails" width="20" height="20" /></td>
+</tr>
+</table>
+Remarque :
+<ul>
+<li>il serait peut etre interessant de mettre l'organisateur dans le tableau, ca me semble assez important...</li>
+<li>La colonne ID me semble inutile</li>
+</ul>
+</td>
+</tr>
+</table>
+</body>
+
+</html>
|