]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/tarea_fuente/templates/show.kid
no mostrar el Editar si no se tiene permisos
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / tarea_fuente / 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 <?python from turbogears import identity ?>
5 <head>
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
7 <title>show</title>
8 </head>
9 <body>
10
11 <table class="show">
12     <tr>
13         <th>Nombre:</th>
14                 <td><span py:replace="record.nombre">nombre</span></td>
15     </tr>
16     <tr>
17         <th>Descripcion:</th>
18                                 <td><span py:replace="record.descripcion">nombre</span></td>
19     </tr>
20 </table>
21 <h2>Comandos</h2>
22 <table>
23         <tr>
24                 <th title="Orden">#</th>
25                 <th>Descripcion</th>
26                 <th>Comando</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>
31         </tr>
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" />
37                 <td>
38                         <span py:if="i.archivos_entrada">
39                                 <a href="${tg.url('/tarea_fuente/comandos/file/archivos_entrada/%d' % i.id)}">Bajar</a>
40                         </span>
41                         <span py:if="not i.archivos_entrada">No tiene</span>
42                 </td>
43                 <td>
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>
46                         </span>
47                         <span py:if="not i.archivos_a_comparar">No tiene</span>
48                 </td>
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>
52                 </td>
53         </tr>
54 </table>
55
56 <br/>
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>
59
60 </body>
61 </html>