]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/misentregas/templates/corrida.kid
detalles
[software/sercom.git] / sercom / subcontrollers / misentregas / templates / corrida.kid
index a5922c9ccd28b3678d5eaa2937fa30ead7ba6393..e81c4544fbb7110a823cb191a899f24dcc1e6150 100644 (file)
 <h1>Corrida</h1>
 
 <h2>Comandos Ejecutados</h2>
-<ul>
-    <li py:for="comando in entrega.comandos_ejecutados">
-    ${comando.shortrepr()}
-    </li>
-</ul>
+<table>
+               <!-- 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>
+       </table>
 <h2>Pruebas Realizadas</h2>
-<ul>
-    <li py:for="prueba in entrega.pruebas">
-    ${prueba.shortrepr()}
-    </li>
-</ul>
+<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>
+       </table>
 
-<a href="${tg.url('/mis_entregas/list')}">Volver</a>
+<a href="javascript:window.history.go(-1);">Volver</a>
 
 </body>
 </html>