]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/curso/templates/notas.kid
Agrego planilla de notas de Curso
[z.facultad/75.52/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 <table class="list">
13     <tr>
14         <th py:for="i in cols" py:content="i" />
15     </tr>
16     <tr py:for="j in range(len(rows))">
17         <td py:for="i in cols" py:content="rows[j][i]" />
18     </tr>
19 </table>
20
21 <br/>
22 <a href="${tg.url('/curso/list')}">Volver</a>
23
24 </body>
25 </html>
26
27 <!-- vim: set et sw=4 sts=4 : -->