]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/misentregas/templates/corrida.kid
Muestro las pruebas y sus comandos ejecutados en misentregas/corrida
[software/sercom.git] / sercom / subcontrollers / misentregas / templates / corrida.kid
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <?python from sercom.model import Grupo, AlumnoInscripto ?>
3 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
4     py:extends="'../../../templates/master.kid'">
5 <head>
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
7 <title>corrida</title>
8 </head>
9 <body>
10
11 <h1>Corrida</h1>
12
13 <h2>Comandos Ejecutados</h2>
14 <table>
15     <tr>
16         <th>#</th>
17         <th>Tarea</th>
18         <th>Comando</th>
19         <th>Inicio</th>
20         <th>Fin</th>
21         <th>Exito?</th>
22         <th>Observaciones</th>
23         <th>Diferencias</th>
24         <th>Archivos Guardados</th>
25     </tr>
26                 <!-- TODO : Solo mostrar con ce.comando.publico == True -->
27                 <tr py:for="ce in entrega.comandos_ejecutados">
28         <td py:content="ce.comando.orden" />
29         <td py:content="ce.comando.tarea.shortrepr()" />
30         <td py:content="ce.comando.comando" />
31         <td py:content="ce.inicio" />
32         <td py:content="ce.fin" />
33         <td py:content="ce.exito" />
34         <td py:content="ce.observaciones" />
35         <td><a href="/" py:if="ce.diferencias">Bajar</a></td>
36         <td><a href="/" py:if="ce.archivos">Bajar</a></td>
37     </tr>
38         </table>
39 <h2>Pruebas Realizadas</h2>
40 <div py:for="p in entrega.pruebas">
41     <h3 py:content="p.caso_de_prueba.shortrepr()" />
42 <table>
43     <tr>
44         <th>#</th>
45         <th>Tarea</th>
46         <th>Comando</th>
47         <th>Inicio</th>
48         <th>Fin</th>
49         <th>Exito?</th>
50         <th>Observaciones</th>
51         <th>Diferencias</th>
52         <th>Archivos Guardados</th>
53     </tr>
54                 <!-- TODO : Solo mostrar con ce.comando.publico == True -->
55                 <tr py:for="ce in p.comandos_ejecutados">
56         <td py:content="ce.comando.orden" />
57         <td py:content="ce.comando.tarea.shortrepr()" />
58         <td py:content="ce.comando.comando" />
59         <td py:content="ce.inicio" />
60         <td py:content="ce.fin" />
61         <td py:content="ce.exito" />
62         <td py:content="ce.observaciones" />
63         <td><a href="/" py:if="ce.diferencias">Bajar</a></td>
64         <td><a href="/" py:if="ce.archivos">Bajar</a></td>
65     </tr>
66         </table>
67 </div>
68
69 <a href="javascript:window.history.go(-1);">Volver</a>
70
71 </body>
72 </html>
73
74 <!-- vim: set et sw=4 sts=4 : -->