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 <?python from turbogears import identity ?>
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
14 <td><span py:replace="record.nombre">nombre</span></td>
18 <td><span py:replace="record.descripcion">nombre</span></td>
24 <th title="Orden">#</th>
27 <th title="Código de Retorno">RET</th>
28 <th title="Archivos de Entrada">Entrada</th>
29 <th title="Archivos a Comparar">Comparar</th>
30 <th py:if="'admin' in identity.current.permissions" title="Archivos a Guardar">Guarda</th>
32 <tr py:for="i in record.comandos" py:if="'admin' in identity.current.permissions or i.publico">
33 <td py:content="i.orden" />
34 <td py:content="i.descripcion" />
35 <td py:content="i.comando" />
36 <td py:content="i.retorno" />
38 <span py:if="i.archivos_entrada">
39 <a href="${tg.url('/tarea_fuente/comandos/file/archivos_entrada/%d' % i.id)}">Bajar</a>
41 <span py:if="not i.archivos_entrada">No tiene</span>
44 <span py:if="i.archivos_a_comparar">
45 <a href="${tg.url('/tarea_fuente/comandos/file/archivos_a_comparar/%d' % i.id)}">Bajar</a>
47 <span py:if="not i.archivos_a_comparar">No tiene</span>
49 <td py:if="'admin' in identity.current.permissions">
50 <span py:if="i.archivos_a_guardar" py:content="', '.join(i.archivos_a_guardar)"></span>
51 <span py:if="not i.archivos_a_guardar">No Guarda</span>
57 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/tarea_fuente/edit/%d' % record.id)}">Editar</a> |
58 <a href="javascript:window.history.go(-1);">Volver</a>