-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes_list.html
128 lines (121 loc) · 4.5 KB
/
notes_list.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Liste des notes</title>
<link rel="stylesheet" type="text/css" href="styles/style.css"/>
</head>
<body>
<div id="content">
<header>
<h1 style="float: left"><a href="home.html"><FONT color="black">StudentPad</FONT></a></h1>
<nav id="nav_menu">
<ul>
<li><a href= "home.html" title="home">Home </a></li>
<li><a href="profile.html" title="Voir votre profil">Profil</a></li>
<li><a href="contact.html" title="Nous contacter">Contact</a></li>
<li><a href="index.html" title="Pour quitter l'application">Déconnexion</a></li>
</ul>
</nav>
<nav id="nav_cours">
<ul>
<li><a href="semainier.html" title="Interaction homme-machine"><FONT color="black">IHM</FONT></a></li>
<li><a href="semainier.html" title="Construction d'applications réparties">CAR</a></li>
<li><a href="semainier.html" title="Algorithme des bases de données">ABD</a></li>
<li><a href="semainier.html" title="Algorithmes et applications">AeA</a></li>
<li><a href="semainier.html" title="Business intelligence">BI</a></li>
<li><a href="semainier.html" title="Compilation">CMPL</a></li>
<li><a href="semainier.html" title="Langages avancés pour les bases de données">LABD</a></li>
</ul>
</nav>
</header>
<h1 style="text-align: center">Liste des notes d'IHM pour le cours du 12/01/2016</h1>
<h4>Uploader une note pour ce cours : <input type="file" name"note"></h4>
<table id="table_semainier">
<tr>
<th>
Uploadeur <a href="notes_list_tri_uploadeur.html">▼</a>
</th>
<th>
Évaluation <a href="notes_list_tri_eval.html">▼</a>
</th>
<th colspan="2">
Voir la note
</th>
<th>
Télécharger la note
</th>
</tr>
<tr>
<td>
Jean Dupont
</td>
<td>
4,5/5
</td>
<td>
<a href="view_note.html" title="Voir la note"><img src="styles/images/notes.png" alt="icone_note" height="30px" width="30px"></a>
</td>
<td>
<a href="view_note_with_video.html" title="Voir la note ET la vidéo"><img src="styles/images/video.png" alt="icone_note_video" height="30px" width="30px"></a>
</td>
<td>
<a href="files/note.txt" download="note.txt" title="Télécharger la note"><img src="styles/images/download.jpg" alt="icone_download" height="30px" width="30px"></a>
</td>
</tr>
<tr>
<td>
Francis Laliane
</td>
<td>
1,5/5
</td>
<td>
<a href="view_note.html" title="Voir la note"><img src="styles/images/notes.png" alt="icone_note" height="30px" width="30px"></a>
</td>
<td>
<a href="view_note_with_video.html" title="Voir la note ET la vidéo"><img src="styles/images/video.png" alt="icone_note_video" height="30px" width="30px"></a>
</td>
<td>
<a href="files/note.txt" download="note.txt" title="Télécharger la note"><img src="styles/images/download.jpg" alt="icone_download" height="30px" width="30px"></a>
</td>
</tr>
<tr>
<td>
John Doe
</td>
<td>
5/5
</td>
<td>
<a href="view_note.html" title="Voir la note"><img src="styles/images/notes.png" alt="icone_note" height="30px" width="30px"></a>
</td>
<td>
<a href="view_note_with_video.html" title="Voir la note ET la vidéo"><img src="styles/images/video.png" alt="icone_note_video" height="30px" width="30px"></a>
</td>
<td>
<a href="files/note.txt" download="note.txt" title="Télécharger la note"><img src="styles/images/download.jpg" alt="icone_download" height="30px" width="30px"></a>
</td>
</tr>
<tr>
<td>
John Doe
</td>
<td>
3,5/5
</td>
<td>
<a href="view_note.html" title="Voir la note"><img src="styles/images/notes.png" alt="icone_note" height="30px" width="30px"></a>
</td>
<td>
<a href="view_note_with_video.html" title="Voir la note ET la vidéo"><img src="styles/images/video.png" alt="icone_note_video" height="30px" width="30px"></a>
</td>
<td>
<a href="files/note.txt" download="note.txt" title="Télécharger la note"><img src="styles/images/download.jpg" alt="icone_download" height="30px" width="30px"></a>
</td>
</tr>
</table>
</div>
</body>
<a style="float: right;margin: 0 0 10px 10px;"href="notes_create_note.html" title="créer une note"><img src="styles/images/create_note.png" alt="icone_note" height="60px" width="60px" > </a>
</html>