]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/misentregas/templates/corrida.kid
Bugfix: fallaba diff por problemas de \n.
[software/sercom.git] / sercom / subcontrollers / misentregas / templates / corrida.kid
index dfc215bffcac5a0fa3a011bddd15617fbad75cb6..8a206d78ed359fe290ec1f7f35dde060a20c97f3 100644 (file)
@@ -1,4 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<?python import turbogears as tg ?>
 <?python from sercom.model import Grupo, AlumnoInscripto ?>
 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
     py:extends="'../../../templates/master.kid'">
         <th>Archivos Guardados</th>
     </tr>
                <!-- TODO : Solo mostrar con ce.comando.publico == True -->
-               <tr py:for="ce in entrega.comandos_ejecutados">
+               <tr py:for="ce in entrega.comandos_ejecutados" py:if="ce.comando.publico">
         <td py:content="ce.comando.orden" />
         <td py:content="ce.comando.tarea.shortrepr()" />
         <td py:content="ce.comando.comando" />
         <td py:content="ce.inicio" />
         <td py:content="ce.fin" />
-        <td py:content="ce.exito" />
+        <td py:content="tg.strbool(ce.exito)" align="center" />
         <td py:content="ce.observaciones" />
-        <td><a href="/" py:if="ce.diferencias">Bajar</a></td>
-        <td><a href="/" py:if="ce.archivos">Bajar</a></td>
+                               <td align="center"><a href="${tg.url('/mis_entregas/diff/%d' % ce.id)}" py:if="ce.diferencias">Bajar</a></td>
+        <td align="center"><a href="${tg.url('/mis_entregas/file/%d' % ce.id)}" py:if="ce.archivos">Bajar</a></td>
     </tr>
        </table>
 <h2>Pruebas Realizadas</h2>
         <th>Archivos Guardados</th>
     </tr>
                <!-- TODO : Solo mostrar con ce.comando.publico == True -->
-               <tr py:for="ce in p.comandos_ejecutados">
+               <tr py:for="ce in p.comandos_ejecutados" py:if="ce.comando.publico">
         <td py:content="ce.comando.orden" />
         <td py:content="ce.comando.tarea.shortrepr()" />
         <td py:content="ce.comando.comando" />
         <td py:content="ce.inicio" />
         <td py:content="ce.fin" />
-        <td py:content="ce.exito" />
+        <td py:content="tg.strbool(ce.exito)" align="center" />
         <td py:content="ce.observaciones" />
-        <td><a href="/" py:if="ce.diferencias">Bajar</a></td>
-        <td><a href="/" py:if="ce.archivos">Bajar</a></td>
-    </tr>
+                               <td align="center"><a href="${tg.url('/mis_entregas/diff/%d' % ce.id)}" py:if="ce.diferencias">Bajar</a></td>
+        <td align="center"><a href="${tg.url('/mis_entregas/file/%d' % ce.id)}" py:if="ce.archivos">Bajar</a></td>
+                       </tr>
        </table>
 </div>