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>
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>
47 <a href="javascript:window.history.go(-1);">Volver</a>
52 <!-- vim: set et sw=4 sts=4 : -->