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'">
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
13 <td><span py:replace="record.nombre">nombre</span></td>
17 <td><span py:replace="record.descripcion">nombre</span></td>
23 <th title="Orden">#</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>
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" />
37 <span py:if="i.archivos_entrada">
38 <a href="${tg.url('/tarea_prueba/comandos/get_archivos_entrada/%d' % i.id)}">Bajar</a>
40 <span py:if="not i.archivos_entrada">No tiene</span>
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>
46 <span py:if="not i.archivos_a_comparar">No tiene</span>
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>
56 <a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a> |
57 <a href="javascript:window.history.go(-1);">Volver</a>