]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/templates/show.kid
58700e45f0f4fd8fea7d7b1cabf0d90dcc45e953
[z.facultad/75.52/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 class="show">
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>Parámetros:</th>
27         <td>
28             <span py:if="record.comando" py:replace="params2str(record.comando)">comando --con-parámetros</span>:
29         </td>
30     </tr>
31     <tr>
32         <th>Código de retorno:</th>
33         <td><span py:replace="record.retorno">retorno</span></td>
34     </tr>
35     <tr>
36         <th>Tiempo de CPU:</th>
37         <td><span py:replace="record.tiempo_cpu">tiempo_cpu</span></td>
38     </tr>
39 </table>
40
41 <br/>
42 <a href="${tg.url('/caso_de_prueba/edit/%d' % record.id)}">Editar</a> |
43 <a href="${tg.url('/caso_de_prueba/list')}">Volver</a>
44
45 </body>
46 </html>