]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/ejercicio/instancia/templates/entregas.kid
b2e5bdb44018500d22bd3bcb2357cd54317ea573
[software/sercom.git] / sercom / subcontrollers / curso / ejercicio / instancia / templates / entregas.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>list</title>
8 </head>
9 <body>
10
11 <h1>Entregas para la Instancia de Entrega <span py:replace="instancia.shortrepr()">Objetos</span></h1>
12
13 <table class="list">
14     <tr>
15                                 <th>Entregador</th>
16         <th>Correcta</th>
17         <th>InicioTareas</th>
18         <th>FinTareas</th>
19         <th>Observaciones</th>
20                                 <th>Operaciones</th>
21     </tr>
22                 <tr py:for="record in instancia.entregas">
23                                 <?python
24                                         def contar_comandos_mal(prueba, publico):
25                                                 total = 0
26                                                 for c in prueba.comandos_ejecutados:
27                                                         if not c.exito and c.publico == publico:
28                                                                 total += 1
29                                                 return total
30
31                                         if not record.exito:
32                                                 # Reviso que tan mal esta
33                                                 # si no hay pruebas, esta mal porque no anduvieron los comandos
34                                                 if len(record.pruebas) == 0:
35                                                         color = "entregamal"
36                                                 else:
37                                                         # Veo que onda con las pruebas
38                                                         pruebas_pub_mal = 0
39                                                         pruebas_priv_mal = 0
40                                                         for prueba in record.pruebas:
41                                                                 if contar_comandos_mal(prueba, True) > 0:
42                                                                         pruebas_pub_mal += 1
43                                                                 if contar_comandos_mal(prueba, False) > 0:
44                                                                         pruebas_priv_mal += 1
45                                                         if pruebas_pub_mal > 0:
46                                                                 color = "entregamal"
47                                                         if pruebas_priv_mal > 0:
48                                                                 color = "entregamal"
49                                         else:
50                                                 # Todo Ok! 
51                                                 color = "entregaok"
52                                 ?>
53                                 <td class="${color}"><span py:if="record.entregador" py:replace="record.entregador.shortrepr()">usuario</span></td>
54         <td class="${color}"><span py:replace="record.exito">fecha asignado</span></td>
55         <td class="${color}"><span py:replace="record.inicio">fecha corregido</span></td>
56         <td class="${color}"><span py:replace="record.fin">fecha corregido</span></td>
57         <td class="${color}"><span py:replace="record.observaciones">nota</span></td>
58                                 <td>
59                                         <a href="${tg.url('/mis_entregas/corrida/%d' % record.id)}">Corrida</a>
60                                         <a href="${tg.url('/mis_entregas/get_archivo/%d' % record.id)}">Bajar Archivo</a>
61                                 </td>
62     </tr>
63 </table>
64
65 <br/>
66 <a href="${tg.url('/curso/ejercicio/instancia/list/%s' % instancia.ejercicio.id)}">Volver</a>
67
68 </body>
69 </html>
70
71 <!-- vim: set et sw=4 sts=4 : -->