]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/tarea_prueba/templates/show.kid
Muestro info basica de los comandos en los SHOW de Tareas
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / tarea_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>Descripcion:</th>
17                                 <td><span py:replace="record.descripcion">nombre</span></td>
18     </tr>
19 </table>
20 <h2>Comandos</h2>
21 <table>
22         <tr>
23                 <th title="Orden">#</th>
24                 <th>Descripcion</th>
25                 <th>Comando</th>
26                 <th title="Código de Retorno">RET</th>
27                 <th title="Archivos de Entrada">Entrada</th>
28                 <th title="Archivos a Comparar">Comparar</th>
29                 <th title="Archivos a Guardar">Guarda</th>
30         </tr>
31         <tr py:for="i in record.comandos">
32                 <td py:content="i.orden" />
33                 <td py:content="i.descripcion" />
34                 <td py:content="i.comando" />
35                 <td py:content="i.retorno" />
36                 <td>
37                         <span py:if="i.archivos_entrada">
38                                 <a href="${tg.url('/tarea_prueba/comandos/get_archivos_entrada/%d' % i.id)}">Bajar</a>
39                         </span>
40                         <span py:if="not i.archivos_entrada">No tiene</span>
41                 </td>
42                 <td>
43                         <span py:if="i.archivos_a_comparar">
44                                 <a href="${tg.url('/tarea_prueba/comandos/get_archivos_a_comparar/%d' % i.id)}">Bajar</a>
45                         </span>
46                         <span py:if="not i.archivos_a_comparar">No tiene</span>
47                 </td>
48                 <td>
49                         <span py:if="i.archivos_a_guardar" py:content="', '.join(i.archivos_a_guardar)"></span>
50                         <span py:if="not i.archivos_a_guardar">No Guarda</span>
51                 </td>
52         </tr>
53 </table>
54
55 <br/>
56 <a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a> |
57 <a href="javascript:window.history.go(-1);">Volver</a>
58
59 </body>
60 </html>