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'">
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
13 <h2>Comandos Ejecutados</h2>
22 <th>Observaciones</th>
24 <th>Archivos Guardados</th>
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>
39 <h2>Pruebas Realizadas</h2>
40 <div py:for="p in entrega.pruebas">
41 <h3 py:content="p.caso_de_prueba.shortrepr()" />
50 <th>Observaciones</th>
52 <th>Archivos Guardados</th>
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>
69 <a href="javascript:window.history.go(-1);">Volver</a>
74 <!-- vim: set et sw=4 sts=4 : -->