]> 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 a5922c9ccd28b3678d5eaa2937fa30ead7ba6393..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'">
 <h1>Corrida</h1>
 
 <h2>Comandos Ejecutados</h2>
-<ul>
-    <li py:for="comando in entrega.comandos_ejecutados">
-    ${comando.shortrepr()}
-    </li>
-</ul>
+<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" 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>
-<ul>
-    <li py:for="prueba in entrega.pruebas">
-    ${prueba.shortrepr()}
-    </li>
-</ul>
+<div py:for="p in entrega.pruebas">
+    <h3 py:content="p.caso_de_prueba.shortrepr()" />
+<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 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="${tg.url('/mis_entregas/list')}">Volver</a>
+<a href="javascript:window.history.go(-1);">Volver</a>
 
 </body>
 </html>