]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/docente/templates/show.kid
Permitir pasar el el archivo de configuración por línea de comandos al tester.
[software/sercom.git] / sercom / subcontrollers / curso / docente / 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()">curso</span></td>
14     </tr>
15     <tr>
16         <th>Docente:</th>
17                 <td><span py:replace="record.docente.shortrepr()">docente</span></td>
18     </tr>
19     <tr>
20         <th>Observaciones:</th>
21                 <td><span py:replace="record.observaciones">numero</span></td>
22     </tr>
23     <tr>
24         <th>Corrige:</th>
25                 <td><span py:if="record.corrige">SI</span><span py:if="not record.corrige">NO</span></td>
26     </tr>
27 </table>
28
29 <br/>
30 <a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a> |
31 <a href="${tg.url('/docente_inscripto/list')}">Volver</a>
32
33 </body>
34 </html>