]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/subcontrollers/misentregas/templates/corrida.kid
fed02ba47b42b27a6c8557359de54287f244e8f6
[z.facultad/75.52/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 <table>
41                 <!-- TODO : Solo mostrar con ce.caso_de_prueba.publico == True -->
42                 <tr py:for="p in entrega.pruebas">
43                         <td py:content="p"></td>
44                 </tr>
45         </table>
46
47 <a href="javascript:window.history.go(-1);">Volver</a>
48
49 </body>
50 </html>
51
52 <!-- vim: set et sw=4 sts=4 : -->