]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/templates/show.kid
Agregar link para ver todo cuando se estaba viendo un listado parcial.
[software/sercom.git] / sercom / subcontrollers / caso_de_prueba / 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>Enunciado:</th>
17         <td><a py:if="record.enunciadoID is not None"
18                         href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}"><span
19                                 py:replace="record.enunciado.shortrepr()">enunciado</span></a></td>
20     </tr>
21     <tr>
22         <th>Descripción:</th>
23         <td><span py:replace="XML(record.desc)">descripcion</span></td>
24     </tr>
25     <tr>
26         <th>Código de retorno:</th>
27         <td><span py:replace="record.retorno">retorno</span></td>
28     </tr>
29     <tr>
30         <th>Tiempo de CPU:</th>
31         <td><span py:replace="record.tiempo_cpu">tiempo_cpu</span></td>
32     </tr>
33     <tr>
34         <th>Parámetros:</th>
35         <td>
36                 <span py:for="p in record.parametros">
37                         <span py:replace="p">parámetro</span>
38                 </span>
39         </td>
40     </tr>
41 </table>
42
43 <br/>
44 <a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a> |
45 <a href="${tg.url('/caso_de_prueba/list')}">Volver</a>
46
47 </body>
48 </html>