]> 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 e81c4544fbb7110a823cb191a899f24dcc1e6150..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'">
 
 <h2>Comandos Ejecutados</h2>
 <table>
+    <tr>
+        <th>#</th>
+        <th>Tarea</th>
+        <th>Comando</th>
+        <th>Inicio</th>
+        <th>Fin</th>
+        <th>Exito?</th>
+        <th>Observaciones</th>
+        <th>Diferencias</th>
+        <th>Archivos Guardados</th>
+    </tr>
                <!-- TODO : Solo mostrar con ce.comando.publico == True -->
-               <tr py:for="ce in entrega.comandos_ejecutados">
-                       <td py:content="ce.comando.shortrepr()"></td>
-                       <td py:content="ce.inicio"></td>
-                       <td py:content="ce.fin"></td>
-                       <td py:content="tg.strbool(ce.exito)"></td>
-                       <td py:content="ce.archivos"></td>
-                       <td py:content="ce.diferencias"></td>
-                       <td py:content="ce.observaciones"></td>
-               </tr>
+               <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="tg.strbool(ce.exito)" align="center" />
+        <td py:content="ce.observaciones" />
+                               <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>
+<div py:for="p in entrega.pruebas">
+    <h3 py:content="p.caso_de_prueba.shortrepr()" />
 <table>
-               <!-- TODO : Solo mostrar con ce.caso_de_prueba.publico == True -->
-               <tr py:for="p in entrega.pruebas">
-                       <td py:content="ce.caso_de_prueba.shortrepr()"></td>
-                       <td py:content="ce.inicio"></td>
-                       <td py:content="ce.fin"></td>
-                       <td py:content="tg.strbool(ce.exito)"></td>
-                       <td py:content="ce.archivos"></td>
-                       <td py:content="ce.diferencias"></td>
-                       <td py:content="ce.observaciones"></td>
-               </tr>
+    <tr>
+        <th>#</th>
+        <th>Tarea</th>
+        <th>Comando</th>
+        <th>Inicio</th>
+        <th>Fin</th>
+        <th>Exito?</th>
+        <th>Observaciones</th>
+        <th>Diferencias</th>
+        <th>Archivos Guardados</th>
+    </tr>
+               <!-- TODO : Solo mostrar con ce.comando.publico == True -->
+               <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="tg.strbool(ce.exito)" align="center" />
+        <td py:content="ce.observaciones" />
+                               <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>
 
 <a href="javascript:window.history.go(-1);">Volver</a>