X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/73ec1f2478eae041de71233c3e889d23c1b01031..0c23837dda202fa32fb04addd1e6113758f85096:/sercom/subcontrollers/correccion/templates/entregas.kid diff --git a/sercom/subcontrollers/correccion/templates/entregas.kid b/sercom/subcontrollers/correccion/templates/entregas.kid index 4eb312b..9313b44 100644 --- a/sercom/subcontrollers/correccion/templates/entregas.kid +++ b/sercom/subcontrollers/correccion/templates/entregas.kid @@ -41,26 +41,18 @@ # Veo que onda con las pruebas pri_mal = 0 pub_mal = 0 - pri_total = 0 - pub_total = 0 - color = "#000000" for prueba in record.pruebas: (rpub_mal, pub_tested) = contar_comandos_mal(prueba, True) (rpri_mal, pri_tested) = contar_comandos_mal(prueba, False) pri_mal += rpri_mal pub_mal += rpub_mal - pri_total += pri_tested - pub_total += pub_tested if pri_mal + pub_mal == 0: - color = "entregaok" + color = "#00ff00" else: - (r, g) = ("00", "00") - r = hex(int(255 * (pub_mal*1.0 / pub_total)))[2:] - g = hex(int(255 * ((pub_total-pub_mal)*1.0 / pub_total)))[2:] - if len(r) < 2: r = "0"+r - if len(g) < 2: g = "0"+g - color = "#" + r + g + "00" - + if pub_mal > 0: + color = "#ff0000" + else: + color = "#ffff00" ?>