]> git.llucax.com Git - software/sercom.git/commitdiff
Muestro las pruebas y sus comandos ejecutados en misentregas/corrida
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Sat, 17 Mar 2007 19:37:30 +0000 (19:37 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Sat, 17 Mar 2007 19:37:30 +0000 (19:37 +0000)
sercom/static/css/style.css
sercom/subcontrollers/misentregas/templates/corrida.kid

index b8bce0967555c2fb874117b4ca8ed61011900491..ad33b1706b6ddeb7c81aebaa0d350ccae5cd7cd0 100644 (file)
@@ -70,6 +70,10 @@ h2 {
   font-size: 150%;\r
 }\r
 \r
+h3 {\r
+  font-size: 100%;\r
+}\r
+\r
 #getting_started_steps a {\r
   text-decoration: none;\r
 }\r
index fed02ba47b42b27a6c8557359de54287f244e8f6..dfc215bffcac5a0fa3a011bddd15617fbad75cb6 100644 (file)
     </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="p"></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">
+        <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="ce.observaciones" />
+        <td><a href="/" py:if="ce.diferencias">Bajar</a></td>
+        <td><a href="/" py:if="ce.archivos">Bajar</a></td>
+    </tr>
        </table>
+</div>
 
 <a href="javascript:window.history.go(-1);">Volver</a>