]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/alumno_inscripto/templates/show.kid
Hacer que testdata.py tenga pruebas y comandos más lindos para probar.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / alumno_inscripto / templates / show.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>show</title>
7 </head>
8 <body>
9
10 <table class="show">
11     <tr>
12         <th>Curso:</th>
13         <td><span py:replace="record.curso.shortrepr()">padrón</span></td>
14     </tr>
15     <tr>
16         <th>Alumno:</th>
17         <td><span py:replace="record.alumno.shortrepr()">nombre</span></td>
18     </tr>
19     <tr>
20         <th>Condicional::</th>
21         <td><span py:replace="record.condicional">email</span></td>
22     </tr>
23     <tr>
24         <th>Tutor:</th>
25         <td><span py:if="record.tutor" py:replace="record.tutor.shortrepr()">tutor</span></td>
26     </tr>
27     <tr>
28         <th>Responsabilidades:</th>
29               <td>
30             <ul>
31                 <li py:for="i in record.responsabilidades">
32                     ${i.shortrepr()}
33                 </li>
34             </ul>
35         </td>
36     </tr>
37     <tr>
38         <th>Grupos a los que Pertenece:</th>
39               <td>
40             <ul>
41                 <li py:for="i in record.membresias">
42                     ${i.grupo.shortrepr()}
43                 </li>
44             </ul>
45         </td>
46     </tr>
47     <tr>
48         <th>Entregas realizadas:</th>
49               <td>
50             <ul>
51                 <li py:for="i in record.entregas">
52                     ${i.shortrepr()}
53                 </li>
54             </ul>
55         </td>
56     </tr>
57     <tr>
58         <th>Correcciones :</th>
59               <td>
60             <ul>
61                 <li py:for="i in record.correcciones">
62                     ${i.shortrepr()}
63                 </li>
64             </ul>
65         </td>
66     </tr>
67 </table>
68
69 <br/>
70 <a href="${tg.url('/alumno/edit/%d' % record.id)}">Editar</a> |
71 <a href="${tg.url('/alumno/list')}">Volver</a>
72
73 </body>
74 </html>