]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/templates/notas.kid
Hacer descripción de CasoDePrueba no obligatoria.
[software/sercom.git] / sercom / subcontrollers / curso / templates / notas.kid
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
3     py:extends="'../../../templates/master.kid'">
4 <head>
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
6 <title>list</title>
7 </head>
8 <body>
9
10 <h1>Notas del Curso : <span py:replace="curso.shortrepr()">Objetos</span></h1>
11
12 <div align="right" style="font-size:70%; margin-right:5%; margin-bottom: 5px;">
13         <a href="${tg.url('/curso/notascsv/%d' % curso.id)}" target="_blank">Exportar</a>
14 </div>
15 <table class="list">
16     <tr>
17         <th py:for="i in cols" py:content="i" />
18     </tr>
19     <tr py:for="j in range(len(rows))">
20         <td py:for="i in cols" py:content="rows[j][i]" />
21     </tr>
22 </table>
23 <br />
24 <div>
25     <strong>Referencias</strong>
26     <ul>
27         <li>EXY = Ejercicio X, Entrega Y</li>
28         <li>EA = Ejercicios Aprobados</li>
29         <li>NP = Nota Practica</li>
30         <li>NF = Nota del Final</li>
31         <li>NL = Nota Firma Libreta</li>
32     </ul>
33 </div>
34 <br/>
35 <a href="${tg.url('/curso/list')}">Volver</a>
36
37 </body>
38 </html>
39
40 <!-- vim: set et sw=4 sts=4 : -->