]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/enunciado/templates/show.kid
e53f7188870eb3f420e42eaa2ba67a647e1e2eef
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / enunciado / 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>
11     <tr>
12         <th>Nombre:</th>
13         <td><span py:replace="record.nombre">nombre</span></td>
14     </tr>
15     <tr>
16         <th>Descripción:</th>
17         <td><span py:replace="XML(record.desc)">descripcion</span></td>
18     </tr>
19     <tr>
20         <th>Autor:</th>
21         <td><a py:if="record.autorID is not None"
22                         href="${tg.url('/docente/show/%d' % record.autor.id)}"><span py:replace="record.autor.shortrepr()">autor</span></a></td>
23     </tr>
24 </table>
25
26 <br/>
27 <a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a> |
28 <a href="${tg.url('/enunciado/list')}">Volver</a>
29
30 </body>
31 </html>